* {
  background-color: transparent !important;
   margin: 0;
   padding: 0;

  
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000 !important;
  color: #f4f4f4;
  
}

/* Preloader with blurred background */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.preloader.hidden {
  opacity: 0;
}

/* SVG size */
.pl {
  width: 100px;
  height: 100px;
}

/* Gradient colors */
.grad1-start { stop-color: #0174c4; }
.grad1-end   { stop-color: #04cdf8; }
.grad2-start { stop-color: #0174c4; }
.grad2-end   { stop-color: #04cdf8; }

/* Preloader ring */
.pl__ring {
  stroke-width: 36;
  stroke-dasharray: 0 257 1 257;
  stroke-dashoffset: 0.01;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 100px 100px;
  fill: none;
  animation: ring 2s ease-out infinite;
}

/* Preloader ball */
.pl__ball {
  stroke-width: 36;
  stroke-dasharray: 1 165;
  stroke-linecap: round;
  animation: ball 2s infinite;
}

/* Ring animation */
@keyframes ring {
  from { stroke-dasharray: 0 257 0 0 1 0 0 258; }
  25% { stroke-dasharray: 0 0 0 0 257 0 258 0; }
  50%, to { stroke-dasharray: 0 0 0 0 0 515 0 0; }
}

/* Ball animation */
@keyframes ball {
  from, 50% {
    animation-timing-function: ease-in;
    stroke-dashoffset: 1;
  }
  64% {
    animation-timing-function: ease-in;
    stroke-dashoffset: -109;
  }
  78% {
    animation-timing-function: ease-in;
    stroke-dashoffset: -145;
  }
  92% {
    animation-timing-function: ease-in;
    stroke-dashoffset: -157;
  }
  57%, 71%, 85%, 99%, to {
    animation-timing-function: ease-out;
    stroke-dashoffset: -163;
  }
}

/* Content container (optional blur effect behind preloader) */
.content-container {
  transition: filter 0.3s ease;
}
.content-container.blurred {
  filter: blur(3px);
}



header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.navbar {
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-container .logo {
  height: 40px;
  width: auto;
  margin-left: 30px;
  max-width: 100%; 
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: white ;
}


.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: rgb(13, 165, 203);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* button */

 .nav-item.auth-buttons {
        display: flex;
        gap: 1rem;
        margin-right: 1rem;
    }

    .login-btn, .signup-btn {
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 500;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        z-index: 1;
        border: 1px solid;
    }

    .login-btn {
        color: white;
        border-color: #3498db;
        background: transparent;
    }

    .login-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background:   #0e5378;
        transition: all 0.3s ease;
        z-index: -1;
    }

    .login-btn:hover::before {
        width: 100%;
    }

    .login-btn:hover {
        color: white;
    }

    .signup-btn {
        color: white;
        border-color: #3498db  ;
        background: transparent;
    }

    .signup-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background:   #0e5378;
        transition: all 0.3s ease;
        z-index: -1;
    }

    .signup-btn:hover::before {
        width: 100%;
    }

    .signup-btn:hover {
        color: white;
    }

/* Base button */
.staggered-menu {
  display: none; /* hidden on desktop, shown in media query */
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  width: max-content;
}

/* Lines */
.staggered-menu .line {
  height: 4px;
  background: #0a5984  !important; /* or #0ea5e9 if you want blue */
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Different widths to match your screenshot */
.staggered-menu .line:nth-child(1) { width: 20px; }
.staggered-menu .line:nth-child(2) { width: 28px; }
.staggered-menu .line:nth-child(3) { width: 16px; }

/* Animation when active (turn into "X") */
.staggered-menu.active .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  width: 28px;
}
.staggered-menu.active .line:nth-child(2) {
  opacity: 0;
}
.staggered-menu.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  width: 28px;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .staggered-menu {
    display: flex;
  }
}

/* Responsive Design */
@media (max-width: 768px) {


  .navbar {
    padding: 0 1.5rem;
   
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    gap: 0;
    flex-direction: column;
    background-color: white !important;
    color: black;
    font-weight: 700;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 1.5rem 0;
    backdrop-filter: blur(5px);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin: 1rem 0;
  }
  
  
}
@media (max-width: 768px) {
  .nav-menu {
     background: #0d405c !important;   
    backdrop-filter: blur(10px);
    color: white;
  
  }
 .nav-item.auth-buttons {
            flex-direction: column;
            gap: 1rem;
            margin: 1rem 0 0;
            width: 80%;
            max-width: 200px;
        }
        
        .login-btn, .signup-btn {
            width: 100%;
            padding: 0.7rem;
            text-align: center;
        }
}

/* Dropdown Menu Styles - Enhanced */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.95) !important;
  min-width: 200px;
  box-shadow: 0 5px 15px black;
  border-radius: 6px;
  padding: 10px 0;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(5px);
  opacity: 0;
  transition: all 0.3s ease;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
 
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  position: relative;
  text-align: center;
}

.dropdown-content a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: rgb(13, 165, 203);
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.dropdown-content a:hover {
  color: white;
  background-color: rgba(4, 28, 161, 0.2);
}

.dropdown-content a:hover::after {
  width: 60%;
}

/* Dropdown arrow icon */
.dropdown .nav-link i {
  transition: transform 0.3s ease;
  margin-left: 5px;
  font-size: 0.8rem;
  color: white;
}

.dropdown:hover .nav-link i {
  transform: rotate(180deg);
  color: #0ea5e9;
} 

/* Corrected Mobile Dropdown Styles */
@media (max-width: 768px) {
  .dropdown-content {
    position: static;
    background: #0d405c !important;   
    border-radius: 6px;
    display: none;
    padding: 12px 0;
    margin: 8px auto; 
    width: 50%; 
    text-align: center !important; 
    box-shadow: none;
    border: none;
    margin-left: 170px;
    border:1px solid white;

  }
  
  .dropdown.active .dropdown-content {
    display: block;
  }
  
  .dropdown-content a {
    color: white;
    padding: 10px 0; /* Adjusted padding */
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    position: relative;
    /* Remove any underline/before elements */
  }
  
  .dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  /* Remove underline from dropdown parent link */
  .dropdown > .nav-link::after {
    display: none;
  }

  /* Center-align the dropdown arrow */
  .dropdown .nav-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
  }
  
  .dropdown.active .nav-link i {
    transform: rotate(180deg);
  }
}






/* [home ---- section] */

/*  main section  */

/* Make all images responsive */
.main-image-wrapper {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px; /* optional for styling */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* optional */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .main-image {
    width: 100%;
    height: auto;
  }
}

.main-title {
  margin-top: -200px;
  line-height: 60px;
  background: linear-gradient(to right,  #FFF 20%,  rgb(11, 124, 176) 40%,  rgb(25, 7, 112) 60%,  #FFF 80%);
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -text-fill-color: transparent;
  -webkit-animation: shine 1s linear infinite;
  animation: shine 1.5s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.main-text-para{
  font-size: 14px;
  line-height: 25px;
 
}
.main-text-para a{
  text-decoration: none;
  list-style: none;
  color: white !important;
}
.main-btn {
  display: inline-block;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.05); /* Light transparent background */
  border: 1px solid #ffffff40; /* Semi-transparent white border */
  color: #fff;
  font-weight: 500;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  text-decoration: none;
  transition: all 0.3s ease;
   border-color: rgb(10, 153, 235);
}

.main-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgb(229, 229, 235);
  color: #fff;
}


.main-btn-2 {
  display: inline-block;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.05); /* Light transparent background */
  border: 1px solid #ffffff40; /* Semi-transparent white border */
  color: #fff;
  font-weight: 500;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  text-decoration: none;
  transition: all 0.3s ease;
  border-color: rgb(10, 153, 235);
  margin-left: 10px !important;
}

.main-btn-2:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgb(229, 229, 235);
  color: #fff;
}

@media (max-width: 768px){
.main-title {
  margin-top: 20px;
  line-height: 39px;
  
}

.main-text-para{
  text-align: justify;
  word-spacing: 1px;
}
}


/*  counter section */

.counter-section {
  background-color: #f5f5f5;
  padding: 60px 0;
  margin-top: -250px;
}

.counter-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  margin: 15px 0;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.counter-box i {
  font-size: 50px;
  color: rgb(226, 226, 237);
  margin-bottom: 15px;
  display: block;
}



.counter-box h3 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #078de0;
}

.counter-box p {
  margin: 0;
  color: #888;
}


.section-subtitle {
  font-size: 0.8rem;
 color: #17b1bf; 
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
   
 
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.section-text {
  font-size: 1rem;
 color: rgb(255, 255, 255);
  line-height: 1.9;
  text-align: justify;
}

.img-section-wrapper {
  width: 100%;
  text-align: center;
}

.img-section-2 {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 500px !important;   
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  background-color: #f8f9fa;
  padding: 10px;
}

/* Tablet */
@media (max-width: 1024px) {
  .img-section-2 {
    max-width: 90%;
    padding: 8px;
   
 
  }
}

/* Mobile */
@media (max-width: 768px) {
  .img-section-2 {
    max-width: 100%;
    padding: 5px;
  
  }
}
.section-text{
 word-spacing: none !important;
}
.section-text a{
  text-decoration: none;
  list-style: none;
  color: white !important;
}
/* plan cards  */

 

.hosting-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
 
}

.hosting-header {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: white;
}

.hosting-cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.hosting-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eaeaea;
}

.hosting-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.hosting-card.featured {
  border: 1px solid #4a90e2;
  position: relative;
}

.card-badge {
  background-color: #0ea5e9 !important;
  color: white;
  border: 1px solid #0ea5e9 ;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.card-header h2 {
  color: rgb(22, 148, 211);
  margin: 0 0 10px 0;
  font-size: 2rem;
}

.card-description {
  color: white;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 0.90rem;
}

.card-features {
  margin: 25px 0;
}

.erp-card-feature {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
 
}

.erp-card-feature:last-child {
  border-bottom: none;
}

.erp-card-feature-name{
  color: white;
  font-weight: 500;
}


.card-button {
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 200;
  line-height: 45px;
  margin: 0 auto;
  max-width: 160px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  display: block;
  text-align: center;
  
}

.card-button:hover { 
  text-decoration: none; 
  
}

.card-button svg {
  height: 45px;
  left: 0;
  position: absolute;
  top: 0; 
  width: 100%; 
  border: #4a90e2 !important;
}

.card-button rect {
  fill: none;
  stroke: rgb(13, 162, 170);
  stroke-width: 2;
  stroke-dasharray: 422, 0;
  transition: all 0.35s linear;
  
}

.card-button:hover {
  background: rgba(74, 144, 226, 0) ;
  font-weight: 900;
  letter-spacing: 1px;
}

.card-button:hover rect {
  stroke-width: 5;
  stroke-dasharray: 15, 310;
  stroke-dashoffset: 48;
  transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 768px) {
  .hosting-cards {
    flex-direction: column;
    align-items: center;
   
  }
  
  .hosting-card {
    width: 90%;
    max-width: 80%;
  
  }
    
  
}
  /*  why choose section */

.why-choose-bixsuite{
    color: white;
}

.choose-img-section-wrapper {
  width: 100%;
  text-align: center;
  margin: 20px 0; /* optional spacing */
}

.choose-img-section {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;       
  height: auto;
  min-height: 250px;     
  border-radius: 8px;
  object-fit: cover;         
  background-color: #f8f9fa;
  padding: 10px;
}
.why-choose-feature-box  a{
  text-decoration: none;
  list-style: none;
  color: white !important;
}

/* Tablet */
@media (max-width: 1024px) {
  .choose-img-section {
    max-width: 90%;
    min-height: 220px;
    padding: 8px;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .choose-img-section {
    max-width: 100%;
    min-height: 180px;
    padding: 5px;
  }
}


.why-choose-feature-box {
  gap: 15px;
  color: white;
}

.why-choose-feature-box i {
  font-size: 30px;
  color: #0d6efd;
  flex-shrink: 0;
  margin-top: 5px;
}


/* Headings */
.testimonial-main h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 0.5rem;
  text-align: center;
 
}

.testimonial-main h6{
  color: rgb(46, 226, 243);
  margin-bottom: 0.5rem;
  text-align: center;
}

.testimonial-user p{
 color: #00bfff;
}

/* testimonial phone ERP Image */
.erp-image {
  text-align: center;
  max-width: 100%;   
  margin: 0 auto;    
  padding: 10px;    
}

.erp-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Testimonial Slider */
.testimonial-slider {
  position: relative;
  min-height: 400px;
}

.testimonial-content {
  position: absolute;
  width: 100%;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-content.active {
  opacity: 1;
}

.user-image {
  text-align: center;
  max-width: 100px;
  margin: 0 auto;
}

.user-image img {
  width: 100%;
  height: auto;
  max-width: 100px;
  border-radius: 50%;    
  object-fit: cover; 
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  padding: 2px;     
}


.stars {
  color: #ffc107;
  font-size: 1.2rem;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  color: white;
  margin-bottom: 1rem;
}

.user-profession {
  font-weight: 500;
  color: #6c757d;
}



@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,600");

.intro {
  display: block;
  margin-bottom: 20px;
}

/* Chatbot container */
.chatbot {
  position: fixed;
  bottom: 16px;
  right: 16px;       /* float on the right */
  width: 300px;      /* fixed width */
  height: 60vh;      /* drawer height */
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-direction: column;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border: 1px solid #fff;
  transition: all 0.3s ease;
}

.chatbot__header {
  flex: 0 0 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
  background: #292460;
  color: #fff;
}

.chatbot__message-window {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  background: #f9f9f9;
  max-height: 50vh;
}

.chatbot__entry {
  flex: 0 0 60px;
  display: flex;
  align-items: center;
  border-top: 1px solid #eee;
  background: #fff;
  padding: 8px;
}


/* CLOSED = floating button (only speech icon visible, no rounded box) */
.chatbot.chatbot--closed {
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;     /* remove rounded */
  bottom: 16px !important;
  right: 50px !important;
  background: transparent !important;  /* no background */
  border: none !important;             /* no border */
  box-shadow: none !important;         /* remove shadow */
  overflow: visible;
  cursor: pointer;
}

/* Hide content when closed */
.chatbot.chatbot--closed .chatbot__message-window,
.chatbot.chatbot--closed .chatbot__entry,
.chatbot.chatbot--closed .chatbot__header p,
.chatbot.chatbot--closed .chatbot__header .icon-close {
  display: none !important;
}

.chatbot.chatbot--closed .chatbot__header {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 100% !important;
  width: 100% !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  cursor: pointer;
}

.chatbot.chatbot--closed .chatbot__header .icon-speech {
  display: block !important;
  width: 48px;   /* adjust size as needed */
  height: 48px;
  fill: #fff;
  margin: 0;
}

.chatbot__header:hover {
  background-color: rgba(57, 50, 133, 0.6) ;
}

.chatbot__header p {
  margin-right: 20px;
}

.chatbot__close-button {
  fill: #fff ;
}

.chatbot__close-button.icon-speech {
  width: 20px;
  display: none;
}

.chatbot--closed .chatbot__close-button.icon-speech {
  display: block;
}

.chatbot__close-button.icon-close {
  width: 14px;
}

.chatbot--closed .chatbot__close-button.icon-close {
  display: none;
}

/* Message bubbles */
.chatbot__messages {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  width: auto;
}

.chatbot__messages li {
  margin-bottom: 20px;
}

.chatbot__messages li.is-ai {
  display: inline-flex;
  align-items: flex-start;
}

.chatbot__messages li.is-user {
  text-align: right;
  display: inline-flex;
  align-self: flex-end;
}

.chatbot__messages li .is-ai__profile-picture {
  margin-right: 8px;
}

.chatbot__messages li .is-ai__profile-picture .icon-avatar {
  width: 40px;
  height: 40px;
  padding-top: 6px;
}

.chatbot__message {
  display: inline-block;
  padding: 12px 20px;
  word-break: break-word;
  margin: 0;
  border-radius: 6px;
  letter-spacing: -0.01em;
  line-height: 1.45;
  overflow: hidden;
  color: white;
}

.is-ai .chatbot__message {
  background-color: rgba(240, 240, 240, 0.8);
  margin-right: 30px;
}

.is-user .chatbot__message {
  background-color: rgba(126, 224, 210, 0.8);
  margin-left: 30px;
}

.chatbot__message a {
  
  word-break: break-all;
  display: inline-block;
  
}

.chatbot__message p:first-child {
  margin-top: 0;
  
}

.chatbot__message p:last-child {
  margin-bottom: 0;

}

.chatbot__message button {
  background-color: #fff;
  font-weight: 300;
  border: 2px solid white;
  border-radius: 50px;
  padding: 8px 20px;
  margin: -8px 10px 18px 0;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.chatbot__message button:hover {
  background-color: #f2f2f2;
}

.chatbot__message button:focus {
  outline: none;
}

.chatbot__message img {
  max-width: 100%;
}

.chatbot__message .card {
  background-color: #fff;
  text-decoration: none;
  overflow: hidden;
  border-radius: 6px;
  color: black;
  word-break: normal;
}

.chatbot__message .card .card-content {
  padding: 20px;
}

.chatbot__message .card .card-title {
  margin-top: 0;
}

.chatbot__message .card .card-button {
  color: #7226e0;
  text-decoration: underline;
}

/* Animations */
.animation:last-child {
  animation: fadein 0.25s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

@keyframes fadein {
  from {
    opacity: 0;
    margin-top: 10px;
    margin-bottom: 0;
  }
  to {
    opacity: 1;
    margin-top: 0;
    margin-bottom: 10px;
  }
}

/* Arrows */
.chatbot__arrow {
  width: 0;
  height: 0;
  margin-top: 18px;
}

.chatbot__arrow--right {
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid rgba(126, 224, 210, 0.8);
}

.chatbot__arrow--left {
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid rgba(240, 240, 240, 0.8);
}

/* Entry/input */
.chatbot__entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 20px;
  border-top: 1px solid #e6eaee;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
}

.chatbot--closed .chatbot__entry {
  display: none;
}

.chatbot__input {
  height: 100%;
  width: 80%;
  border: 0;
  color: white !important;
}

.chatbot__input:focus {
  outline: none;
}

.chatbot__input::placeholder {
  color: #7f7f7f;
}

.chatbot__submit {
  fill: white;
  height: 22px;
  width: 22px;
  transition: fill 0.2s ease;
  cursor: pointer;
}

.chatbot__submit:hover {
  fill: #147c8c;
}

/* Highlight text */
.u-text-highlight {
  color: #7ee0d2;
}

/* Loader */
.loader {
  margin-bottom: -2px;
  text-align: center;
  opacity: 0.3;
}

.loader__dot {
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  margin: 0 1px;
  background: black;
  border-radius: 50px;
  animation: loader 0.45s infinite alternate;
}

.loader__dot:nth-of-type(2) {
  animation-delay: 0.15s;
}

.loader__dot:nth-of-type(3) {
  animation-delay: 0.3s;
}

@keyframes loader {
  to {
    opacity: 0.5;
    transform: translateY(-3px);
  }
}

 @media (max-width: 768px)  {
   .chatbot.chatbot--closed .chatbot__header .icon-speech {
    margin-right: -40px !important;
    height: 50px;
   }
}






/* [about ---- section] */

/* about first section */


     .about-section {
            padding: 100px 0;
            position: relative;
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
         
            
        }
        
        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 0 20px;
            z-index: 10;
            position: relative;
        }
      .about-content a {
        text-decoration: none;
        list-style: none;
        color: white !important;
      }
        
        .about-content h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(44, 204, 228, 0.3);
            /* color: #18bfc5; */
            color: white;
        }
        
        .about-tagline {
            font-size: 1.2rem;
            font-weight: 300;
            letter-spacing: 1px;
            margin-top: 40px;
            position: relative;
            display: inline-block;
            color: white;
        }
        
        .about-tagline::before {
            content: "";
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: rgba(255, 255, 255, 0.5);
        }

        /* Animated Background */
        .about-erp-area {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .about-erp-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .about-erp-elements li {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            list-style: none;
            animation: float 25s linear infinite;
            bottom: -150px;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 12px;
            padding: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s ease;
            width: 140px;
            height: 140px;
            border: 2px solid #158ccd !important;
        }
        
        .about-erp-elements li:hover {
            transform: scale(1.15) rotate(5deg);
            background: rgba(255, 255, 255, 0.18);
            z-index: 5;
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
            animation-play-state: paused;
        }
        
        .about-erp-icon {
            font-size: 30px;
            margin-bottom: 12px;
            color: #fff;
            text-shadow: 0 0 15px rgba(100, 200, 255, 0.7);
            transition: all 0.3s ease;
        }
        
        .about-erp-elements li:hover .about-erp-icon {
            transform: scale(1.2);
            text-shadow: 0 0 20px rgba(100, 200, 255, 0.9);
          
        }
        
        .about-erp-text {
            font-size: 14px;
            font-weight: 500;
            color: #fff;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
        }
        
        /* Individual element styling */
        .about-erp-elements li:nth-child(1) {
            left: 10%;
            animation-delay: 0s;
        
            
        }
        
        .about-erp-elements li:nth-child(2) {
            left: 20%;
            width: 150px;
            height: 150px;
            animation-delay: 2s;
            animation-duration: 22s;
            
        }
        
        .about-erp-elements li:nth-child(3) {
            left: 75%;
            animation-delay: 4s;
            
        }
        
        .about-erp-elements li:nth-child(4) {
            left: 40%;
            animation-delay: 0s;
            animation-duration: 18s;
            
        }
        
        .about-erp-elements li:nth-child(5) {
            left: 65%;
            animation-delay: 0s;
            
        }
        
        .about-erp-elements li:nth-child(6) {
            left: 80%;
            width: 160px;
            height: 160px;
            animation-delay: 3s;
          
        }
        
        .about-erp-elements li:nth-child(7) {
            left: 35%;
            animation-delay: 7s;
            
        }
        
        .about-erp-elements li:nth-child(8) {
            left: 50%;
            animation-delay: 15s;
            animation-duration: 35s;
          
        }
        
        .about-erp-elements li:nth-child(9) {
            left: 25%;
            animation-delay: 2s;
            animation-duration: 30s;
            
        }
        
        .about-erp-elements li:nth-child(10) {
            left: 85%;
            animation-delay: 0s;
            animation-duration: 25s;
          
        }
        
        .about-erp-elements li:nth-child(11) {
            left: 5%;
            animation-delay: 5s;
            animation-duration: 28s;
           
        }
        
        .about-erp-elements li:nth-child(12) {
            left: 55%;
            animation-delay: 8s;
            animation-duration: 32s;
           
        }
 @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.7;
            }
            100% {
                transform: translateY(-1000px) rotate(720deg);
                opacity: 0;
            }
        }
        
        @keyframes floatShape {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-40px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }
        
        @keyframes connect {
            0% {
                width: 0;
                opacity: 0;
            }
            50% {
                width: 200px;
                opacity: 0.3;
            }
            100% {
                width: 0;
                opacity: 0;
            }
        }
        
        @keyframes pulse {
            0% {
                transform: scale(0.8);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.2;
            }
            100% {
                transform: scale(0.8);
                opacity: 0.5;
            }
        }

        @media screen and (max-width: 768px) {
            .about-tagline {
                letter-spacing: 0px;
            }
            
            .about-content h2 {
                font-size: 2.2rem;
            }
            
            .about-erp-text {
                font-size: 12px;
            }
            
            .about-erp-elements li {
                width: 110px !important;
                height: 110px !important;
                padding: 8px;
            }
            
            .about-erp-icon {
                font-size: 28px;
            }
        }

/* / section-2 start */
  .about-image {
    position: relative;
    height: 400px;
    margin-top: 60px;
}

/* Base: overlap styling */
.about-image picture {
    position: absolute;
}
.about-image picture img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    height: auto;
}

/* First image */
.about-image .image-one {
    top: 0;
    left: 0;
    width: 70%;
    z-index: 1;
}

/* Second image */
.about-image .image-two {
    right: 0;
    bottom: 0;
    width: 60%;
    z-index: 2;
    transform: translateY(20px);
}

/* Hover effects */
.about-image:hover .image-one img {
    transform: rotate(-3deg);
}
.about-image:hover .image-two img {
    transform: translateY(10px) rotate(2deg);
}

/*  Mobile fix */
@media (max-width: 768px) {
    .about-image {
        display: flex;
        flex-direction: column;
        gap: 30px;
        height: auto;
    }

    /* reset absolute positioning on mobile */
    .about-image picture {
        position: relative !important;
        width: 100% !important;
        transform: none !important;

    }

    .about-image picture img {
        width: 80%;
        height: auto;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        transform: none !important;
        margin-left: 30px;
    }
}


        .about-text-content-title {
            margin-top: 100px;
            color: white;
        }
        
        .about-text-content-title h2 {
            font-size: 2.8rem;
            font-weight: 700;
            /* color: var(--dark); */
            margin-bottom: 20px;
           color: #18bfc5;
            
        }
        
        .about-text-content-title p {
         font-size: 1.1rem;
         color: var(--secondary) ;
         
        }
        
        .about-text-content-paragraph p {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 25px;
            text-align: justify;
            color: white;
        }
        .about-text-content-paragraph p a {
            text-decoration: none;
            list-style: none;
            color: white;
        }



/*  last section  */


.about-creative-features {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            
        }
        
        .about-creative-features::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            /* background: var(--primary); */
            color: white;
            opacity: 0.1;
            border-radius: 50%;
            z-index: 0;

        }
        
        .about-creative-features::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            /* background: var(--accent); */
            opacity: 0.1;
            border-radius: 50%;
            z-index: 0;
           
        }
        
        .creatiive-section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
            color: white;
        }
        
        .creatiive-section-header h3 {
            font-size: 2.2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;

        }
        
        .creatiive-section-header h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .about-creative-features-list {
            position: relative;
            z-index: 1;
        }
        
        .about-creative-feature-item {
            display: flex;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(248, 241, 241, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            border-left: 5px solid transparent;
            position: relative;
            overflow: hidden;
            /* border: 1px solid rgb(20, 222, 245);
            border-right: none; */
        }
        
        .about-creative-feature-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            /* border-left-color: var(--primary); */
        }
        
        .about-creative-feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(74, 108, 247, 0.03) 0%, rgba(74, 108, 247, 0.01) 100%);
            z-index: -1;
        }
        
        .about-creative-feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary) 0%, #6c8eff 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 25px;
            flex-shrink: 0;
            color: white;
            font-size: 1.8rem;
            box-shadow: 0 10px 20px rgba(74, 108, 247, 0.2);
            transition: all 0.3s ease;
        }
        
        .about-creative-feature-item:hover .about-creative-feature-icon {
            transform: rotate(10deg) scale(1.1);
            box-shadow: 0 15px 25px rgba(74, 108, 247, 0.3);
           
        }
        
        .about-creative-feature-text h4 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--dark);
            position: relative;
            display: inline-block;
            color: white;
        }
        
        .about-creative-feature-text h4::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }
        
        .about-creative-feature-item:hover .about-creative-feature-text h4::after {
            width: 60px;
        }
        
        .about-creative-feature-text p {
            color: var(--secondary);
            margin-bottom: 0;
            font-size: 1.05rem;
            color: white;
        }
        
        /* Animation for staggered items */
        .about-creative-feature-item:nth-child(1) {
            animation-delay: 0.1s;
        }
        
        .about-creative-feature-item:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .about-creative-feature-item:nth-child(3) {
            animation-delay: 0.3s;
        }
        
        @media (max-width: 768px) {
            .about-creative-feature-item {
                flex-direction: column;
                text-align: center;
            }
            
            .about-creative-feature-icon {
                margin-right: 0;
                margin-bottom: 20px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .about-creative-feature-text h4::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }



/* [feature ---- section] */




/* feature first section */

.features-section {
            background: #0d405c !important;  
            padding: 100px 0;
            color: #fff;
            position: relative;
        }
        
        .features-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 0 20px;
        }
        
        .features-content h2 {
            font-size: 2.8rem;
            font-weight: 700;
        }
        
          .features-tagline {
            font-size: 1.2rem !important;
            font-weight: 300;
            letter-spacing: 1px;
            margin-top: 40px;
            position: relative;
            display: inline-block;
             font-family: Arial, sans-serif;
        }
        
        .features-tagline::before {
            content: "";
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: rgba(255, 255, 255, 0.5);
        }

      
/*   */

.feature-flip-modules {
     padding: 80px 0;
            
}
.feature-section-header{
            text-align: center;
          margin-top: 20px;
        }
        
       

.feature-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #09c5e6; /* Blue color */
    margin-bottom: 20px;
}
.feature-section-header p{
 text-align: center;
 color: white;
}
        
        .feature-flip-card {
            position: relative;
            height: 350px;
            margin-top:100px;
            perspective: 1000px;
          
        }
        
        .feature-flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.8s;
            transform-style: preserve-3d;
            box-sizing: border-box;
            border: 1px solid ;
            border-color:rgb(14, 180, 236);
        }
        
        .feature-flip-card:hover .feature-flip-card-inner {
            transform: rotateY(180deg);
        }
        
        .feature-flip-card-front, 
        .feature-flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .feature-flip-card-front {
            background: linear-gradient(135deg, var(--primary) 0%, #6c8eff 100%);
            color: white;
            text-align: center;
        }
        
        .feature-flip-card-back {
            background-color: white;
            transform: rotateY(180deg);
        }
        
        .feature-module-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #07cdf8;
        }
        
        .feature-module-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: white;
        }
        
      
        .feature-module-description {
            font-size: 1rem;
            line-height: 1.6;
            color: white;
           
        }
        
        @media (max-width: 768px) {
            .feature-section-header h2 {
                font-size: 2rem;
            }
            
            .feature-section-header p {
                font-size: 1rem;
            }
            
            .feature-flip-card {
                height: 380px;
                margin: 30px;
            }
     
        }



/* [erp ---- section] */


/* packages first section */

.erp-package-section {
            background: #0d405c !important;  
            padding: 100px 0;
            color: #fff;
            position: relative;
        }
        
        .erp-package-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 0 20px;
           
        }
        
        .erp-package-content h1 {
            font-size: 2.1rem;
           
        }
        
          .erp-tagline{
            font-size: 1.2rem !important;
            font-weight: 300;
            letter-spacing: 1px;
            margin-top: 40px;
            position: relative;
            display: inline-block;
             font-family: Arial, sans-serif;
        }
        
        .erp-tagline::before {
            content: "";
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: rgba(255, 255, 255, 0.5);
        }

      
        
/* Modern Pricing Box Styles */


.erp-package-section-plan{
  text-align: center;
  margin-bottom: 100px;
  margin-top: 100px;
  color: white;
}

.erp-package-section-plan h2{
  color:  #05cdf0;
  font-size: 60px;
}

.erp-modern-pricing-boxes {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.erp-modern-box {
    background: white;
    border-radius: 12px;
    padding: 35px;
    width: 250px;
    height: 30vh;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 2px solid #00bec4; /* Blue border */
}

.erp-modern-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.erp-popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: rgb(29, 170, 181) !important; 
    color: white; /* Blue text */
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    border: 1px solid #0074c4; /* Blue border */
   
}

.erp-modern-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white; /* Blue text */
    text-align: center;
}

.price {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #07d3ea; /* Blue text */
    text-align: center;
}

.price span {
    font-size: 1rem;
    color: #777;
    font-weight: normal;
}

.erp-modern-btn {
    width: 80%;
   margin-left: 20px;
    padding: 12px;
    border-radius: 6px;
    background:  #00bec4 !important; 
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid  #00bec4; 
}

.erp-modern-btn:hover {
    background: #005a9c; /* Darker blue on hover */
    transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 900px) {

    .erp-modern-pricing-boxes {
        flex-direction: column;
        align-items: center;
        margin: 30px;
    }
    
    .erp-modern-box {
        width: 90% !important;
        max-width: 300px;
    }
    .table-container td,tr{
      width: 100%;
      
    }
}



/* Sticky Table Styles */
.erp-table-container {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
    max-height: 550px;
    overflow-y: auto;
    border-radius: 5px;  
}

.erp-feature-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.erp-feature-table thead {
    position: sticky;
    top: 0;
    background: #f8f9fa;
    z-index: 10;
}

.erp-feature-table th, 
.erp-feature-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #03dab6;
}

.erp-feature-table th:first-child,
.erp-feature-table td:first-child {
    text-align: left;
}


/* White tick */
.tick {
    color: white;
    font-weight: bold;
    font-size: 18px;
   
}



/* Table styling */
.erp-feature-table td {
    font-size: 15px;
    padding: 14px;
    text-align: center;
    vertical-align: middle;
    color: white;
}

.erp-feature-table td:first-child {
    text-align: left;
    font-weight: 500;
    
}

.erp-feature-table thead th {
    font-weight: 600;
    color: white;
    background-color: #07b0b0 !important;
}

.erp-feature-table tbody tr:hover {
    background-color: #f9fcff;
}

/* Responsive Design */
@media (max-width: 900px) {
    .erp-modern-pricing-boxes {
        flex-direction: column;
        align-items: center;
        
    }
    
    .erp-modern-box {
        width: 100%;
        max-width: 350px;
    }
    
}

@media (max-width: 768px) {
    .erp-table-container {
        display: block;
        width: 100%;
        overflow-x: auto; /* enable side scroll */
        -webkit-overflow-scrolling: touch; /* smooth scroll for iOS */
        border-radius: 8px;
    }

    .erp-feature-table {
        font-size: 8px !important;
        width: 4px; 
       
    }

    .erp-feature-table thead th {
        position: sticky;
        top: 0;
        background-color: #07b0b0;
        z-index: 2;
       
        
    }
     .erp-feature-table td {
         font-size: 12px !important;
        width: 100%; 
       
    }

}



.erp-button-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}

.erp-active-button {
  width: 150px;
  padding: 10px;
  border-radius: 6px;
  background: #00bec4 !important;
  color: white;
  font-weight: bold;
  border: 1px solid #00bec4;
  cursor: pointer;
  transition: background 0.3s ease;
}

.erp-active-button:hover {
  background: #00a2a8 !important;
}



/* [pos ---- section] */

/* feature first section */

.pos-section {
            background: #0d405c !important;  
            padding: 100px 0;
            color: #fff;
            position: relative;
        }
        
        .pos-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 0 20px;
        }
        
        .pos-content h1 {
            font-size: 2.1rem;
          
        }
        
        .pos-tagline {
            font-size: 1.2rem !important;
            font-weight: 300;
            letter-spacing: 1px;
            margin-top: 40px;
            position: relative;
            display: inline-block;
             font-family: Arial, sans-serif;
        }
        
        .pos-tagline::before {
            content: "";
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: rgba(255, 255, 255, 0.5);
        }

        @media screen and (max-width: 768px){
             .pos-tagline{
              letter-spacing: 0px;
             }
        }


        .pos-services-section {
    font-family: 'Arial', sans-serif;
}

.pos-service-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    perspective: 1000px;
    -webkit-perspective: 1000px;
    height: 220px;
    border-radius: 5px;
    border: 1px solid;
     background-color: #007a80 !important; 
}

.pos-service-icon {
    width: 100%;
    height: 220px;
    padding: 20px;
    text-align: center;
    transition: all 0.5s ease;
    border-radius: 5px;
}

.pos-service-content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    width: 100%;
    height: 220px;
    padding: 20px;
    text-align: center;
    transition: all 0.5s ease;
    background-color: #007a80;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transform: translateY(110px) rotateX(-90deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 5px;
}

.pos-service-box .pos-service-icon .pos-front-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.pos-service-box .pos-service-icon .pos-front-content i {
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
}

.pos-service-box .pos-service-icon .pos-front-content h3 {
    font-size: 18px;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 600;
}

.pos-service-box .pos-service-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.pos-service-box .pos-service-content p {
    font-size: 14px;
    color: #e0f7fa;
    margin: 0;
    padding: 0 15px;
}

.peacock-blue {
    background-color: #00a3a8;
}

.peacock-blue-light {
    background-color: #008c91;
}

.pos-service-box:hover .pos-service-icon {
    opacity: 0;
    transform: translateY(-110px) rotateX(90deg);
}

.pos-service-box:hover .pos-service-content {
    opacity: 1;
    transform: rotateX(0);
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .pos-service-box .pos-service-icon .pos-front-content i {
        font-size: 32px;
    }
    .pos-service-box .pos-service-icon .pos-front-content h3,
    .service-box .service-content h3 {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .pos-service-box {
        height: 200px;
        width: 80%;
        margin: 30px;
    }
    .pos-service-icon,
    .pos-service-content {
        height: 200px;
    }
    .pos-service-content {
        transform: translateY(100px) rotateX(-90deg);
    }
    .pos-service-box:hover .pos-service-icon {
        transform: translateY(-100px) rotateX(90deg);
    }
}

@media (max-width: 767px) {
    .pos-service-box {
        height: 180px;
    }
    .pos-service-icon,
    .pos-service-content {
        height: 180px;
        padding: 15px;
    }
    .pos-service-content {
        transform: translateY(90px) rotateX(-90deg);
    }
    .pos-service-box:hover .pos-service-icon {
        transform: translateY(-90px) rotateX(90deg);
    }
    .pos-service-box .pos-service-icon .pos-front-content i {
        font-size: 28px;
        margin-bottom: 10px;
    }
    .pos-service-box .pos-service-content p {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.pos-button-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
  text-decoration: none;
  text-align: center;
}

.pos-active-button {
  width: 150px;
  padding: 10px;
  border-radius: 6px;
  background: #00bec4 !important;
  color: white;
  font-weight: bold;
  border: 1px solid #00bec4;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.pos-active-button:hover {
  background: #00a2a8 !important;
}




/* [contact ---- section] */


/* contact first section */

.contact-main-section {
            background: #0d405c !important;  
            padding: 100px 0;
            color: #fff;
            position: relative;
        }
        
        .contact-main-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 0 20px;
        }
        
        .contact-main-content h2 {
            font-size: 2.8rem;
            font-weight: 700;
        }
        
        .contact-tagline {
            font-size: 1.2rem;
            font-weight: 300;
            letter-spacing: 1px;
            margin-top: 40px;
            position: relative;
            display: inline-block;
             font-family: Arial, sans-serif;
        }
        
        .contact-tagline::before {
            content: "";
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: rgba(255, 255, 255, 0.5);
        }



        /* another section */

        .contact-section {
            padding: 80px 0;
            color: white;
        }
        
        .contact-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .contact-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: rgb(14, 156, 203);
            margin-bottom: 20px;
        }
        
        .contact-header p {
            font-size: 1.2rem;
            color: var(--secondary);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .contact-card {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .contact-method {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(74, 108, 247, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: rgb(45, 181, 211);
            font-size: 1.2rem;
        }
        
        .contact-details h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .contact-details p {
            color: var(--secondary);
            margin-bottom: 0;
            font-size: 1.1rem;
        }
        
        .map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 60%;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            min-height: 300px;
            border: 0;
        }
        
        @media (max-width: 768px) {
            .contact-header h2 {
                font-size: 2rem;
            }
            
            .contact-header p {
                font-size: 1rem;
            }
            
            .contact-card {
                padding: 30px;
                margin-bottom: 30px;
            }
             .map-container iframe{
                
                height: 80%;
             }
        }

.enquiry-form-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgb(0, 255, 255);
}

.enquiry-form-card h3 {
    font-size: 1.5rem;
    color: rgb(14, 156, 203);
    margin-bottom: 20px;
    
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.form-control:focus {
    border-color: rgb(14, 156, 203);
    outline: none;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.submit-btn {
    background: rgb(14, 156, 203);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: rgb(11, 130, 170);
}

.submit-btn i {
    margin-right: 8px;
}
        
  @media (max-width: 768px) {
    .enquiry-form-card{
        margin: 20px;
    }
  }      




/* Footer Section */
    .footer-section {
         background: #0d405c !important;   
         background: linear-gradient(59deg, #3A6073, #133649);
        color: white;
        
 
        }

        .footer-content {
            padding: 60px 0;
        }

        .footer-widget {
            margin-bottom: 30px;
        }

        .footer-widget-heading {
            position: relative;
            margin-bottom: 30px;
            padding-bottom: 10px;
        }

        .footer-widget-heading h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0;
        }

        .footer-widget-heading h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            height: 2px;
            width: 50px;
            background: #0ea5e9;
        }

        .footer-logo img {
            max-width: 120px;
        }

        .footer-text p {
            color: #cbd5e1 !important;
            margin-top: 20px;
        }

        .footer-social-icon span {
            display: block;
            margin-top: 25px;
            color: #cbd5e1 ;
           
        }

        .footer-social-icon a {
            display: inline-block;
            margin-right: 15px;
           
        }

        .footer-social-icon a i {
            font-size: 18px;
            color: #cbd5e1 !important; 
            margin-top: 10px;
            font-size: 28px;
        }

        .footer-widget ul {
            padding: 0;
            list-style: none;
        }

        .footer-widget ul li {
            margin-bottom: 10px;
        }

        .footer-widget ul li a {
            color: #cbd5e1;
            transition: 0.3s;
            text-decoration: none;
        }

        .footer-widget ul li a:hover {
            color: #0ea5e9;
        }

        .footer-location{
          color: white;
        }
         .footer-location:hover{
          color: #0ea5e9;
         }

        .footer-text p span a{
          color: white;
          text-decoration: none !important;
        }

         .footer-text p span a:hover{
            color: #0ea5e9;
         }

        .footer-text p i {
            margin-right: 10px;
             color: #cbd5e1 !important; 
            font-size: 20px;
           
        }
        

        .copyright-area {
            background: #0a0f1b;
            padding: 20px 0;
        }

        .copyright-text {
            text-align: center;
        }

        .copyright-text p {
            margin: 0;
            color: #ffffff;
        }

        .copyright-text p span {
            color: #0ea5e9;
            font-weight: 600;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .footer-content {
                padding: 40px 0;
                 margin: 20px;
               
            }
            
            .footer-widget {
                margin-bottom: 40px;
                
            }
           
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
        }

      