@import "tailwindcss";

:root {
  --background: #ffffff;
  --foreground: #171717;
}

.font-montserrat {
  font-family: Montserrat;
}
/* 🔹 For custom placeholder color */
.select-custom {
  color: #0000006b; /* when "Select" is showing */
}

/* 🔹 Normal option colors */
.select-custom option {
  color: #000000; /* dropdown options - black */
}

.gm-style > div > div > div > div {
  width: 130px !important;
}
.gm-style img {
  width: auto !important;
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --font-sans: var(--font-geist-sans);
  --font-mono: var(--font-geist-mono);
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
  }
}

@keyframes fadeSlide {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.animate-fadeSlide {
  animation: fadeSlide 2s ease-in-out;
}
.scrollMenus {
  scrollbar-width: 120px;
  -ms-overflow-style: none;
}

.scrollMenus::-webkit-scrollbar {
  height: 14px;
}

.scrollMenus::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.scrollMenus::-webkit-scrollbar-thumb {
  background: #c5c4c4;
  border-radius: 0px;
}

.scrollMenus::-webkit-scrollbar-button {
  display: none;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.scrollDropdown::-webkit-scrollbar {
  height: 10px !important;
}

.scrollDropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.scrollDropdown::-webkit-scrollbar-thumb {
  background: #c5c4c4;
  border-radius: 0px;
}

.scrollDropdown::-webkit-scrollbar-button {
  display: none;
}

.\!container {
  width: 100% !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1280px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.3s ease-out forwards;
}

.animate-scaleIn {
  animation: scaleIn 0.3s ease-out forwards;
}

@keyframes wave {
  0%,
  60%,
  100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-12px);
  }
}

.animate-wave {
  animation: wave 1.2s ease-in-out infinite;
}

.zsiq_theme1 .zsiq_flt_rel {
  width: 45px !important;
  height: 45px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.zsiq_theme1 .siqicon::before {
  font-size: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 40px !important;
}
.zsiq_theme1.zsiq_floatmain {
  width: 45px !important;
  max-height: 45px !important;
}

@media (max-width: 768px) {
  .zsiq_theme1.zsiq_floatmain {
    display: none !important;
  }
}


/* CKEditor 5 Base Styles */
.ck-content {
}
 
/* Headings - CKEditor 5 Style */
.ck-content h1,
.ck-content h2,
.ck-content h3,
.ck-content h4,
.ck-content h5,
.ck-content h6 {
  font-weight: 700;
  line-height: 1.3;
  margin: 0 !important;
  color: #333;
  font-family: 'Poppins', 'Poppins Fallback' !important;
}
 
.ck-content h1 { 
  font-size: 2.25rem; /* 36px */
  font-weight: 800;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 0.5em;
}
 
.ck-content h2 { 
  font-size: 1.875rem; /* 30px */
  font-weight: 700;
}
 
.ck-content h3 { 
  font-size: 1.5rem; /* 24px */
  font-weight: 600;
}
 
.ck-content h4 { 
  font-size: 1.25rem; /* 20px */
  font-weight: 500;
}
 
.ck-content h5 { 
  font-size: 1.125rem; /* 18px */
}
 
.ck-content h6 { 
  font-size: 1rem; /* 16px */
  color: #6b7280;
}
 
/* Paragraphs */
.ck-content p {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  line-height: 1.5;
}
 
/* Links */
.ck-content a {
  /* color: #2563eb; */
  /* text-decoration: underline; */
  /* text-underline-offset: 2px; */
}
 
.ck-content a:hover {
  color: #1d4ed8;
  text-decoration: none;
}
 
/* Lists - CKEditor Style */
.ck-content ul,
.ck-content ol {
  margin: 1em 0;
  padding-left: 2.5em;
}
 
.ck-content li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}
 
.ck-content ul {
  /* list-style-type: disc; */
}
 
.ck-content ul ul {
  list-style-type: circle;
}
 
.ck-content ul ul ul {
  list-style-type: square;
}
 
.ck-content ol {
  list-style-type: decimal;
}
 
.ck-content ol ol {
  list-style-type: lower-alpha;
}
 
.ck-content ol ol ol {
  list-style-type: lower-roman;
}
 
/* Blockquotes */
.ck-content blockquote {
  border-left: 4px solid #3b82f6;
  padding: 1em 2em;
  margin: 2em 0;
  background: #f8fafc;
  font-style: italic;
  border-radius: 0 8px 8px 0;
}
 
.ck-content blockquote p {
  margin-bottom: 0.5em;
  color: #475569;
}
 
.ck-content blockquote p:last-child {
  margin-bottom: 0;
}
 
/* Code Blocks */
.ck-content code {
  background: #f3f4f6;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.875em;
  color: #dc2626;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}
 
.ck-content pre {
  background: #1f2937;
  color: #f9fafb;
  padding: 1.5em;
  border-radius: 0.5rem;
  margin: 1.5em 0;
  overflow-x: auto;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.875em;
  line-height: 1.5;
}
 
.ck-content pre code {
  background: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
}
 
/* Images */
.ck-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1em 0;
}
 
.ck-content figure {
  margin: 2em 0;
  text-align: center;
}
 
.ck-content figcaption {
  font-style: italic;
  margin-top: 0.75em;
  color: #6b7280;
  font-size: 0.875em;
}
 
/* Tables - CKEditor Style */
.ck-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0em 0;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
 
.ck-content td,
.ck-content th {
  padding: 0.75em 1em;
  border: 1px solid #e5e7eb;
  text-align: left;
}
 
.ck-content th {
  background: #f8fafc;
  font-weight: 600;
  color: #374151;
}
 
.ck-content tr:nth-child(even) {
  background: #f9fafb;
}
 
.ck-content tr:hover {
  background: #f3f4f6;
}
 
/* Horizontal Line */
.ck-content hr {
  border: none;
  border-top: 2px solid #e5e7eb;
  margin: 3em auto;
  width: 50%;
}
 
/* Text Formatting */
.ck-content strong {
  font-weight: 700;
  color: #374151;
}
 
.ck-content em {
  font-style: italic;
  color: #4b5563;
}
 
.ck-content u {
  text-decoration: underline;
  text-underline-offset: 2px;
}
 
.ck-content s {
  text-decoration: line-through;
  color: #6b7280;
}
 
/* Alignment Classes */
.ck-content .text-tiny { font-size: 0.7em; }
.ck-content .text-small { font-size: 0.85em; }
.ck-content .text-big { font-size: 1.4em; }
.ck-content .text-huge { font-size: 1.8em; }
 
.ck-content .align-left {
  text-align: left;
}
 
.ck-content .align-center {
  text-align: center;
}
 
.ck-content .align-right {
  text-align: right;
}
 
.ck-content .align-justify {
  text-align: justify;
}
 
/* Image Alignment */
.ck-content .image-style-align-left {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1em;
}
 
.ck-content .image-style-align-right {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1em;
}
 
.ck-content .image-style-align-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
 
/* Media Queries for Responsive Design */
@media (max-width: 768px) {
  .ck-content {
    font-size: 14px;
    padding: 0 1em;
  }
  .ck-content h1 { font-size: 1.875rem; }
  .ck-content h2 { font-size: 1.5rem; }
  .ck-content h3 { font-size: 1.25rem; }
  .ck-content ul,
  .ck-content ol {
    padding-left: 1.5em;
  }
  .ck-content blockquote {
    padding: 1em;
    margin: 1.5em 0;
  }
}
 
 
