/**
 * styles.css
 * Custom styles for Shikel Lab Supplies Limited web application.
 */

/* Import Coupe Fonts (thin, regular, bold) */
@font-face {
    font-family: 'Coupe-Thin-Regular';
    src: url('../fonts/Coupe-Thin-Regular.otf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Coupe-Normal-Regular';
    src: url('../fonts/Coupe-Normal-Regular.otf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Coupe-Medium-Regular';
    src: url('../fonts/Coupe-Medium-Regular.otf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Coupe-Bold-Regular';
    src: url('../fonts/Coupe-Bold-Regular.otf') format('truetype');
    font-weight: 700;
    font-style: normal;
}


/* Base styles */
:root {
  --primary-color: #2c3e50;
  --header-color: #fff;
  --heading-color: var(--header-color);
  --navbar-color: #0b1215;
  --default-color: #fff;
  --secondary-color: #093663;
  --accent-color: #0c49e6;
  --success-color: #0eee6b;
  --danger-color: #e74c3c;
  --text-light: #ecf0f1;
  --text-dark: #0a1017;
  --shadow: 0 2px 4px rgba(0,0,0,0.1);
  --preloader-background-color: #090701; /* black chocolate */
  --header-background-color: #fffff0; /* marble */
  --projects-background-color: #fbf5df; /* parachment */
  --skills-background-color: #d1d1ca; /* pearl */
  --about-background-color: #fdfdfd; /* egg white */
  --contact-background-color: #f0f8ff; /* alice blue */
  --resume-background-color:  rgb(251, 251, 215); /*#F5F5F7 ghost white */
  --footer-background-color: #f0f8ff; /* alice blue */
  --nav-mobile-background-color: var(--header-background-color); /* #dde7f2 */
  --nav-dropdown-background-color: var(--header-background-color); /* #f8f9fa */
  --accordion-button-background: #f0f8ff; /* alice blue */
  --breadcrumbs-background-color: #f8f9fa;
  --card-background-color: #f2f8fc;
  --special-background-color: #f0f8ff; /* alice blue */
  --scroll-top-background-color: #000000; /* alice blue */
  --scroll-top-color: #f0f8ff; /* black */
  --search-background-color: rgba(255, 255, 255, 0.95);
  --project-info-background-color: rgba(255, 255, 255, 0.7); /*#fffff0 ivory rgba(255, 255, 255, 0.8) */
  --services-background-color: #f0f8ff; /* alice blue */
  --project-info-color: #000; /* black */
  --nav-color: #444444;
  --nav-hover-color: var(--accent-color);
  --nav-dropdown-background-color: #e9e8e6;
  --nav-dropdown-color: #444444;
  --contrast-color: #000;
  --search-bar-background-color: #1d0723;
  --nav-dropdown-hover-color: var(--accent-color);
  --background-color: #e8e7e4;
  --default-color: #000000;
  --heading-color: #222222;
  --accent-color: #6008ad;
  --surface-color: #e1dede;
}

:root {
    scrollbar-color: var(--accent-color) rgba(0,0,0,0.1);
    scrollbar-width: thin;
    scroll-behavior: smooth;
}

/* reset all elements */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
    transition: 0.3s;
    color: var(--accent-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

body, html {
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    box-sizing: border-box;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, 'Segoe UI', Verdana, system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background-color);
    min-height: 100vh;
    font-weight: 400;
    letter-spacing: 0.01em;
}

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


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--header-background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 60px;
  margin: auto;
  margin-right: 8px;
  border-radius: 10px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 300;
  color: var(--heading-color);
}


@media (max-width: 1600px) {
  .header .logo {
    order: 1;
  }

  .header .search-nav-wrapper {
    order: 2;
  }
}

.header .search-nav-wrapper {
  display: flex;
  align-items: center;
}

.header .search-nav-wrapper .search-bar {
  padding: 0 10px;
  min-width: 100px;
}

.header .search-nav-wrapper .search-icon, .header .search-nav-wrapper .theme-switcher i {
  color: var(--nav-color);
  cursor: pointer;
  font-size: 20px;
  margin-right: 20px;
  transition: 0.3s;
  display: flex;
  line-height: 0;
  align-items: center;
}

.header .search-nav-wrapper .search-icon i {
    color: var(--default-color);
}

.header .search-nav-wrapper .search-icon i:hover {
  transform: rotate(90deg);
}

  .header .search-nav-wrapper .search-bar {
    order: 1;
    position: fixed;
    background-color: var(--search-bar-background-color);
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 99999;
  }

  #searchModal .search-bar .search-tips {
    margin-top: 20px;
    font-size: 14px;
    color: var(--default-color);
  }

  .search-tips h2 {
    font-size: 20px;
    color: var();
    font-weight: 700;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 10px;
  }

  .search-tips ul li:not(:last-child) {
    margin-bottom: 10px;
  }

  .search-tips ul li i {
    color: var(--accent-color);
    margin-right: 5px;
  }

  .search-tips ul li:last-child {
    margin-bottom: 0;
  }

  .header .search-nav-wrapper .search-bar-show {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    width: 100%;
  }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0.3s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    font-weight: 500;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background-color: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--background-color), transparent 85%);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 18px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--default-color);
    font-size: 32px;
    padding-right: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
  }

  .header .search-nav-wrapper .theme-switcher {
    order: 2;
  }

  .header .search-nav-wrapper .mobile-nav-toggle {
    order: 3;
  }

  .navmenu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    padding: 0;
    z-index: 998;
    background-color: var(--nav-mobile-background-color);
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) var(--nav-mobile-background-color);
  }

  .navmenu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--nav-hover-color));
    z-index: 1;
  }

  .navmenu ul {
    position: relative;
    display: block;
    padding: 100px 0 30px 0;
    margin: 0;
    list-style: none;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
    z-index: 2;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 15px 25px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid color-mix(in srgb, var(--nav-color), transparent 85%);
    position: relative;
  }

  .navmenu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(135deg, var(--accent-color), var(--nav-hover-color));
    transition: width 0.3s ease-in-out;
    z-index: -1;
  }

  .navmenu a:hover::before,
  .navmenu .active::before {
    width: 4px;
  }

  .navmenu a:hover,
  .navmenu .active {
    color: var(--accent-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 14px;
    line-height: 0;
    margin-left: 10px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    color: var(--nav-dropdown-background-color);
    background-color: color-mix(in srgb, var(--nav-color), transparent 15%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover i,
  .navmenu .active i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 0;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    border-radius: 0;
  }

  .navmenu .dropdown ul ul {
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.3s ease-in-out;
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: var(--nav-dropdown-background-color);
  }

  /* Mobile navigation overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 996;
    backdrop-filter: blur(3px);
  }

  .mobile-nav-active {
    overflow: visible;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--accent-color);
    font-size: 32px;
    margin-right: 0;
    z-index: 1001;
    position: fixed;
    right: 20px;
    top: 20px;
  }

  .mobile-nav-active .navmenu {
    left: 0;
  }

  .mobile-nav-active .nav-overlay {
    opacity: 0.6;
    visibility: visible;
  }

  /* Close button styling */
  .mobile-nav-toggle.bi-x {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 2px;
    backdrop-filter: blur(7px);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
#footer {
  color: var(--default-color);
  background-color: var(--footer-background-color);
  /*box-shadow: 0px 5px 5px 0px color-mix(in srgb, var(--footer-background-color), transparent 20%);
   box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  border-top: 1px solid color-mix(in srgb, var(--footer-background-color), transparent 20%); */
  font-size: 14px;
  padding: 0 0 30px 0;
  position: relative;
}

#footer .footer-top {
  padding: 30px 0;
  background-color: var(--footer-background-color);
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 400;
}

#footer .footer-top .footer-title {
  color: var(--default-color);
  background-color: var(--footer-background-color);
  padding: 25px 0;
  position: relative;
  /* border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%); */
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: var(--default-color);
}

#footer .footer-top .social-links {
  margin-top: 20px;
}

#footer .footer-top .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--default-color);
  font-size: 15px;
  color: var(--default-color);
  margin: 0 5px;
  transition: all 0.3s ease-in-out 0.3s;
}

#footer .footer-top .social-links a i {
  line-height: 0;
  color: var(--default-color);
}

#footer .footer-top .social-links a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 30%);
  border-color: var(--accent-color);
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 5px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul,
#footer .footer-top .footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i,
#footer .footer-top .footer-contact ul i {
  padding-right: 2px;
  color: var(--accent-color);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li,
#footer .footer-top .footer-contact ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child,
#footer .footer-top .footer-contact ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a,
#footer .footer-top .footer-contact ul a {
  color: var(--default-color);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover,
#footer .footer-top .footer-contact ul a:hover {
  color: var(--accent-color);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--preloader-background-color, --background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

/* Main Content */
main {
    flex: 1;
}

.card {
    border: none;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

.card-body {
    padding: 2rem;
}

.card-title {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Form Styles */
.form-control {
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(52,152,219,0.25);
}

.btn-primary {
    background-color: var(--accent-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
}

/* Form Error States */
.form-control.is-invalid {
    border-color: var(--danger-color);
    background-image: none;
}

.invalid-feedback {
    color: var(--danger-color);
    font-size: 0.875rem;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

/* Alerts */
.alert {
    border: none;
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.alert-success {
    background-color: var(--success-color);
    color: white;
}

.alert-danger {
    background-color: var(--danger-color);
    color: white;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar-nav {
        margin: 1rem 0;
    }
    
    .card-body {
        padding: 1.5rem;
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--scroll-top-background-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--scroll-top-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--scroll-top-background-color), transparent 5%);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/* WhatsApp Chat Button */
.whatsapp-toggle {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 75px; /* Position above scroll-top button */
  z-index: 99998;
  background-color: #25d366; /* WhatsApp green */
  width: 56px;
  height: 56px;
  border-radius: 50px;
  transition: all 0.4s;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-toggle i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.whatsapp-toggle:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-toggle.active {
  visibility: visible;
  opacity: 1;
  bottom: 75px;
}


/* WhatsApp Modal Custom Styles */
.whatsapp-modal .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    max-height: fit-content;
    margin: 0 auto;
}

.whatsapp-modal .modal-header {
    background: linear-gradient(135deg, #066d2b 0%, rgb(34, 79, 5) 100%);
    border: none;
    padding: 15px 20px;
    position: relative;
}

.whatsapp-modal .modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    opacity: 0.3;
}

.whatsapp-modal .modal-title {
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.whatsapp-modal .whatsapp-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
}

.whatsapp-modal .btn-close {
    background-color: rgb(45, 105, 5);
    border-radius: 50%;
    color: #ff1;
    opacity: 1;
    cursor: pointer;
    box-shadow: none;
    z-index: 1;
}

.whatsapp-modal .btn-close:hover {
    color: #ff1;
}

.whatsapp-modal .modal-body {
    padding: 15px 10px;
    background: #000;
    position: relative;
}

/* Chat Interface Styles */
.chat-container {
    background: rgb(0, 0, 0);
    border-radius: 15px;
    padding: 2px;
    margin-bottom: 10.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.welcome-message,
.support-message {
    background: #515251;
    border-radius: 18px 18px 18px 4px;
    padding: 10px 12px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    max-width: 85%;
}

.welcome-message::before,
.support-message::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -8px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-right-color: #515251;
    border-bottom-color: #515251;
    transform: rotate(-45deg);
}

.welcome-text {
    margin: 0;
    color: #fffafa;
    font-size: 0.95rem;
    line-height: 1.4;
    text-align: left;
}

.support-text {
    color: #fffafa;
    font-size: 0.95rem;
    text-align: start;
    margin: 0;
}

.chat-button {
    background: linear-gradient(135deg, #066d2b 0%, #04655a 100%);
    border: none;
    border-radius: 25px;
    padding: 15px 20px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    width: fit-content;
}

.chat-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.chat-button i {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Emoji Styling */
.emoji {
    font-size: 1.2rem;
    margin-right: 5px;
}
.emoji i {
  background: rgb(248, 192, 0);
  border-radius: 50%;
  border: 1px solid rgb(248, 182, 0);
}

/* Online Status */
.online-status {
    color: #ffe;
    font-size: 0.85rem;
    z-index: 1;
}

.online-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ff1;
    border-radius: 50%;
    margin-right: 5px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .whatsapp-modal .modal-content {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
}
