/*==================================================
  GLOBAL STYLES
==================================================*/
body {
  background-color: #FAFAFA;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
}

/* Common Section Heading Styles (applied to block-section1 and footer-section) */
.section-heading h4 {
  color: #ffa500;
  font-weight: bold;
  font-size: 30px;
}

.section-heading .subheading {
  color: #3931af;
  font-size: 20px;
}

/* =========================================
   DARK MODE OVERRIDES
   ========================================= */

/* Body */
body.dark {
  background-color: #121212 !important;
  color: #f5f5f5 !important;
}

body.light {
  background-color: #FAFAFA;
  color: #333;
}

/* Navbar */
body.dark .navbar-custom {
  background-color: #1f1f1f !important;
}

body.dark .navbar-custom .nav-link {
  color: #ddd !important;
}

body.dark .navbar-custom .nav-link:hover {
  color: #ffd166 !important;
}

/* Section Headings */
body.dark .section-heading h4 {
  color: #ffcc66;
}

body.dark .section-heading .subheading {
  color: #9bb4ff;
}

/* Features Section */
body.dark .feature-card {
  background: #1e1e1e !important;
  color: #eee;
}

body.dark .feature-card .icon-box {
  background: #2a2a2a;
}

body.dark .feature-points li span:last-child {
  color: #ddd;
}

/* Testimonials */
body.dark #customers-testimonials .item {
  background-color: #1e1e1e;
  color: #fff;
}

/* Footer */
body.dark .footer-section {
  background: #181818;
  color: #f1f1f1;
}

body.dark .footer-section h4 {
  color: #ffcc66;
}

body.dark .footer-section .subheading {
  color: #9bb4ff;
}

/* Contact Form */
body.dark .contact-card {
  background-color: #1c1c1c;
}

body.dark .contact-info h2 {
  color: #fff;
}

body.dark .contact-info p {
  color: #ccc;
}

body.dark .form-group input,
body.dark .form-group textarea {
  background: #2a2a2a;
  border: 1px solid #444;
  color: #fff;
}

body.dark .form-group input::placeholder,
body.dark .form-group textarea::placeholder {
  color: #aaa;
}

body.dark .file-input-label {
  background-color: #2a2a2a;
  border-color: #444;
  color: #ccc;
}

body.dark .file-input-text {
  color: #aaa;
}

/* Buttons */
body.dark .submit-btn {
  background: linear-gradient(90deg, #0099cc, #005fcc);
}

body.dark .submit-btn:hover {
  background: linear-gradient(90deg, #00c6ff, #0077ff);
}

.cookie_inner {
  font-size: 12px;
}

.custom-cookie-bg {
  background-color: #f8f9fa; /* replace with your desired color */
}


/*==================================================
  NAVBAR CSS
==================================================*/

/* Navbar general styling */
.navbar-custom {
  transition: background-color 0.3s;
}

/* Navbar collapse when expanded */
.navbar-collapse.collapse.show {
  background-color: rgba(0, 0, 0, 0.05);
  /* Light mode fallback */
  border-radius: 8px;
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Nav links */
.navbar-custom .nav-link {
  font-weight: 500;
  transition: color 0.3s;
}

.navbar-custom .nav-link:hover {
  color: #ff6b6b;
  /* Accent color on hover */
}

/* Dark mode overrides */
.navbar-dark .navbar-collapse.collapse.show {
  background-color: rgba(255, 255, 255, 0.05);
}

.navbar-dark .nav-link:hover {
  color: #ffd166;
}

/* Mobile toggle button animation */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/*==================================================
  BLOCK-1: HOW IT WORKS
==================================================*/
.block-section1 {
  padding-top: 8%;
  padding-left: 5%;
}

.block-section1 .row {
  margin-top: 2%;
}

.how-img {
  text-align: center;
}

.how-img img {
  width: 80%;
  height: 95%;
}


/*==================================================
  BLOCK-2: TESTIMONIALS (OWL CAROUSEL)
==================================================*/
#customers-testimonials .item {
  text-align: center;
  margin-bottom: 50px;
  padding: 15px;
  opacity: .2;
  transform: scale3d(0.8, 0.8, 1);
  transition: all 0.3s ease-in-out;
  background-color: #FFF;
  border-radius: 3px;
}

#customers-testimonials .owl-item.active.center .item {
  opacity: 1;
  transform: scale3d(1.0, 1.0, 1);
  background-color: #FFF;
}

.owl-carousel .owl-item img {
  transform-style: preserve-3d;
  max-width: 90px;
  margin: 0 auto 17px;
}

#customers-testimonials.owl-carousel .owl-dots {
  display: inline-block;
  width: 100%;
  text-align: center;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  outline: none;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.4);
  display: inline-block;
  height: 20px;
  margin: 0 2px 5px;
  transform: translate3d(0px, -50%, 0px) scale(0.3);
  transform-origin: 50% 50% 0;
  transition: all 250ms ease-out 0s;
  width: 20px;
  border-radius: 100%;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
  background: #fff;
  transform: translate3d(0px, -50%, 0px) scale(0.6);
}

.commo img {
  width: 30px !important;
  height: auto;
  float: left;
}

.author-img img {
  width: 60px !important;
  height: auto;
  border-radius: 100%;
  /* margin-bottom: 0 !important; */
}


/*==================================================
  BLOCK-3: FOOTER
==================================================*/
.footer-section {
  padding-top: 8%;
  padding-left: 5%;
}

.footer-section h4 {
  color: #292828;
  font-weight: bold;
  font-size: 30px;
}

.footer-section .subheading {
  color: #3931af;
  font-size: 20px;
}

.footer-section .row {
  margin-top: 2%;
}

.list-style li {
  list-style: circle;
}


/*==================================================
  UTILITY STYLES
==================================================*/
.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.dots-loader {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.dots-loader span {
  width: 8px;
  height: 8px;
  background: #0d6efd;
  border-radius: 50%;
  display: inline-block;
  animation: bounce 0.6s infinite alternate;
}

.dots-loader span:nth-child(2) {
  animation-delay: 0.2s;
}

.dots-loader span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  from {
    transform: translateY(0);
    opacity: 0.7;
  }

  to {
    transform: translateY(-8px);
    opacity: 1;
  }
}


/*==================================================
  CONTACT FORM STYLES
==================================================*/
/* Container */
.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 20px;
}

.contact-container.light {
  background-color: #f9f9f9;
  color: #222;
}

.contact-container.dark {
  background-color: #121212;
  color: #f1f1f1;
}

/* Card */
.contact-card {
  background-color: inherit;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

/* Contact Info */
.contact-info {
  text-align: center;
}

.contact-info h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-info p {
  font-size: 15px;
  line-height: 1.6;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.col-md-6 {
  flex: 1 1 calc(50% - 20px);
  min-width: 250px;
}

/* Input Fields */
.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 15px 14px 45px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition: all 0.3s;
  box-sizing: border-box;
  background-color: inherit;
  color: inherit;
}

.contact-container.dark .form-group input,
.contact-container.dark .form-group textarea {
  border: 1px solid #555;
  background-color: #1e1e1e;
  color: #eee;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0077ff;
  box-shadow: 0 0 10px rgba(0, 119, 255, 0.15);
}

.form-group textarea {
  height: 120px;
  resize: none;
}

/* Icons */
.input-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #aaa;
  transition: color 0.3s;
}

.form-group input:focus + .input-icon,
.form-group textarea:focus + .input-icon {
  color: #0077ff;
}

.textarea-icon {
  top: 15px;
  transform: none;
}

/* File Upload */
.file-upload-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.file-input-label {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background-color: #f1f1f1;
  border: 1px solid #ccc;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  width: fit-content;
}

.contact-container.dark .file-input-label {
  background-color: #2a2a2a;
  border: 1px solid #555;
  color: #ddd;
}

.file-input-label:hover {
  background-color: #e0e0e0;
}

.contact-container.dark .file-input-label:hover {
  background-color: #333;
}

.file-input-label svg {
  margin-right: 8px;
}

.file-input-text {
  color: #666;
  max-width: 250px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
}

.contact-container.dark .file-input-text {
  color: #aaa;
}

.file-input {
  display: none;
}

/* Submit Button */
.submit-btn {
  background: linear-gradient(90deg, #0077ff, #00c6ff);
  border: none;
  color: #fff;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: linear-gradient(90deg, #005fcc, #0099cc);
  transform: translateY(-2px);
}

/* Reviews Text */
.reviews-text {
  text-align: center;
  font-size: 14px;
  margin-top: 12px;
  opacity: 0.8;
}

/* Success Notification */
.success-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #4caf50;
  color: white;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeIn 0.5s;
  z-index: 9999;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-card {
    padding: 25px 20px;
  }

  .col-md-6 {
    flex: 1 1 100%;
  }
}
/*==================================================
  CUSTOM TEXTAREA STYLES
==================================================*/
/* ==================================================
   TEXTAREA GROUP STYLES
================================================== */
.textarea-group {
  position: relative;
  width: 100%;
}

.styled-textarea {
  width: 100%;
  padding: 16px 18px 16px 50px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 12px;
  outline: none;
  resize: vertical;
  background: #fff;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  min-height: 140px;
}

.styled-textarea:focus {
  border-color: #0077ff;
  box-shadow: 0 0 12px rgba(0, 119, 255, 0.2);
}

.styled-textarea::placeholder {
  color: #aaa;
  font-style: italic;
}

/* Pencil icon inside textarea */
.textarea-icon {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 18px;
  color: #bbb;
  transition: color 0.3s;
}
.styled-textarea:focus + .textarea-icon {
  color: #0077ff;
}

/* ==================================================
   TOOLBAR BUTTONS
================================================== */
/* Floating toolbar container */
.textarea-toolbar {
  display: flex;
  align-items: center;
  gap: 0; /* no gap to make them seamless */
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10;
}

/* Shared icon button style */
.icon-btn,
.split-btn {
  background: #fff;
  border: 1px solid #ccc;
  width: 36px;
  height: 36px;
  font-size: 16px;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* Rounded only at ends when grouped */
.icon-btn:first-child {
  border-radius: 8px 0 0 8px;
}
.icon-btn:last-child {
  border-radius: 0 8px 8px 0;
}
.icon-btn:not(:first-child):not(:last-child) {
  border-radius: 0;
  border-left: none; /* remove double border */
}

/* Hover and disabled */
.icon-btn:hover:not(:disabled),
.split-btn:hover:not(:disabled) {
  background: #f5f5f5;
  color: #0077ff;
  border-color: #bbb;
}
.icon-btn:disabled,
.split-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

/* Split download button group */
.split-btn-group {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
}
.split-btn.main {
  border-right: none;
  border-radius: 0;
}
.split-btn.toggle {
  border-radius: 0 8px 8px 0;
}

/* Dropdown styling */
.download-dropdown {
  position: absolute;
  top: 42px;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 1000;
  min-width: 150px;
}
.download-dropdown button {
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: transparent;
  font-size: 14px;
  cursor: pointer;
  color: #333;
}
.download-dropdown button:hover {
  background: #f5f5f5;
}


/* ==================================================
   CHARACTER COUNTER
================================================== */
.char-counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 12px;
  transition: color 0.3s ease;
}

.char-counter.limit-green { color: #28a745; }
.char-counter.limit-orange { color: #ff9800; }
.char-counter.limit-red { color: #dc3545; }


/*==================================================
  FEATURES SECTION CSS
==================================================*/

/* Section heading typography */
.features-section .section-title {
  font-size: 2rem;
  line-height: 1.3;
}

.features-section .section-subtitle {
  max-width: 700px;
  font-size: 1rem;
}

/* Feature card styling */
.feature-card {
  transition: all 0.3s ease-in-out;
  border-radius: 12px;
  background: #fff;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
}

.feature-card h3 {
  font-size: 1rem;
}

/* Icon box for the top-left icon */
.feature-card .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f0f2f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card .icon-box .icon {
  font-size: 1.25rem;
  color: #0d6efd; /* bootstrap primary color */
}

/* List styling */
.feature-points li {
  display: flex;
  align-items: flex-start;
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e6f4ea; /* pale green */
  color: #1f7a2a; /* dark green stroke */
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
}

.feature-points li span:last-child {
  line-height: 1.45;
  font-size: 0.95rem;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .features-section .section-title {
    font-size: 1.5rem;
  }
  .feature-card {
    min-height: unset;
  }
}

@media (min-width: 992px) {
  .features-section .section-title {
    font-size: 2.15rem;
  }
}

.toggle-background {
  height: 20px;
  width: 50px;
  display: flex;
  align-items: center;
  border-radius: 20px;
  background-color: #ccc;
  cursor: pointer;
  padding: 2px;
  transition: background-color 0.3s ease;
}

.toggle-selection {
  height: 25px;
  aspect-ratio: 1;
  background-color: yellow;
  box-shadow: 0 0 2px 4px rgba(229, 255, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: margin 0.2s ease-in-out, background-color 0.2s ease,
    box-shadow 0.2s ease;
  color: black;
}

.toggle-selection.active {
  margin-left: 25px;
  background-color: black;
  box-shadow: inset 12px 0 0 0 rgba(255, 255, 255, 1);
  color: white;
}

/*==================================================
  Alert CSS
==================================================*/
.toast-wrapper {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
}

.toast-card {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  min-width: 300px;
  max-width: 360px;
  animation: slideIn 0.4s ease;
  position: relative;
}

.toast-icon {
  font-size: 20px;
  margin-right: 12px;
  line-height: 1.2;
}

.toast-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.toast-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
}

.toast-message {
  font-size: 14px;
  color: #555;
}

.toast-close {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #666;
  line-height: 1;
  margin-left: 10px;
}

.toast-close:hover {
  color: #000;
}

/* Progress bar at bottom */
.toast-progress {
  height: 3px;
  width: 100%;
  margin-top: 8px;
  border-radius: 2px;
  animation: progressBar 3s linear forwards;
}

.toast-progress.success { background-color: #4dabf7; }
.toast-progress.info { background-color: #4dabf7; }
.toast-progress.warning { background-color: #fbc02d; }
.toast-progress.danger { background-color: #e57373; }
.toast-progress.dark { background-color: #333; }
.toast-progress.light { background-color: #ccc; }

@keyframes progressBar {
  from { width: 100%; }
  to { width: 0%; }
}

/* Slide-in animation */
@keyframes slideIn {
  from { opacity: 0; transform: translateX(100%); }
  to { opacity: 1; transform: translateX(0); }
}


/* public\front-end\css\developer\custom.css */