:root {
  --primary-color: #082755;
  --secondary-color: #076db1;
  --tertiary-color: #0827559e;
  --red: #c80919;
  --green: #35b518;
  --border-radius: 20px;
  --font-size: 1rem;
  --gradient-color: linear-gradient(120deg, #076db1, #082755);
  --white: #ffff;
  --section-height: 85vh;
  --half-section-height: 50vh;
  --shadow: 0 10px 30px rgba(8, 39, 85, 0.1);
  --transition: all 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-color);
  border-radius: 10px;
}

/* Navigation */
.nav-active::after {
  width: 100% !important;
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-color);
  transition: var(--transition);
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  background: var(--gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  font-weight: 500;
  color: var(--primary-color) !important;
  margin: 0 10px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-color);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  background: url("assets/tech-works-bg.webp") no-repeat center center/cover;
  min-height: var(--section-height);
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-color);
  opacity: 0.7;
  /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff05" points="0,1000 1000,0 1000,1000"/></svg>'); */
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  background: var(--white);
  color: var(--primary-color);
  padding: 15px 40px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: none;
  font-size: 1.1rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(8, 39, 85, 0.2);
  color: var(--primary-color);
}

.cta-button.outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.bg-primary {
  background: var(--primary-color);
}

.cta-button.outline:hover {
  background: var(--white) !important;
  color: var(--primary-color);
}

/* Product Highlight Cards */
.highlight-cards {
  margin-top: 4rem;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
}

.highlight-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.highlight-card h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.highlight-card p {
  opacity: 0.9;
  margin-bottom: 0;
}

/* Section Styles */
.section {
  padding: 2rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 1rem;
  opacity: 0.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Benefits Section */
.benefits-section {
  background: linear-gradient(45deg, #f8f9ff 0%, #e6f2ff 100%);
}

.benefit-item {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(8, 39, 85, 0.15);
}

.benefit-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.benefit-item h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* Product Cards */
.product-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(8, 39, 85, 0.1);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(8, 39, 85, 0.2);
}

.product-header {
  background: var(--gradient-color);
  color: var(--white);
  padding: 2rem 1.5rem;
  text-align: center;
}

.product-header h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-body {
  padding: 2rem;
}

.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.product-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
}

.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 1.5rem;
}

.price small {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Testimonials */
.testimonial {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  margin: 1rem 0;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  color: var(--secondary-color);
  opacity: 0.3;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
}

/* Stats Section */
.stats-section {
  background: var(--gradient-color);
  color: var(--white);
}

.stat-item {
  text-align: center;
  padding: 1rem;
}
.stat-percent {
  font-size: 1.5rem;
  font-weight: 700;
  display: inline-block;
  margin-left: 0.2rem;
  color: var(--white);
}
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 3rem 0 2rem;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer a:hover {
  color: var(--white);
}

.social-links a {
  display: inline-block;
  margin-right: 1rem;
  font-size: 1.5rem;
  transition: var(--transition);
}

.social-links a:hover {
  transform: translateY(-2px);
  color: var(--secondary-color);
}

/* Location Items in Footer */
.location-item {
  font-size: 0.9rem;
}

.location-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.location-address,
.location-address-long {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.85rem;
}

.location-address-short {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Animations */
.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  /* .section {
    padding: 3rem 0;
  } */

  .section-title {
    font-size: 2rem;
  }

  .highlight-card,
  .benefit-item,
  .product-card {
    margin-bottom: 2rem;
  }
}

/* Loading Animation */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

.loading.hide {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--secondary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(100px);
  transition: var(--transition);
  z-index: 1000;
}

.scroll-top.show {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(8, 39, 85, 0.3);
}

/* ===== CONTACT PAGE CSS STARTS HERE ===== */

/* Contact Hero Section */
.contact-hero {
  background: var(--gradient-color);
  min-height: 40vh;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff05" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
}

.contact-hero .hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.contact-hero .hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Section */
.contact-section {
  padding: 2rem 1rem;
  background: #f8f9ff;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 600px;
}

.contact-form-section {
  padding: 1.5rem;
}

.contact-form-header {
  margin-bottom: 2rem;
}

.contact-form-header h2 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-form-header p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 0;
}

/* Form Styles */
.form-floating {
  position: relative;
  margin-bottom: 0.5rem;
}

.form-floating .form-control {
  height: 60px;
  padding: 1rem 0.75rem 0.25rem 0.75rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  transition: var(--transition);
  background: #fff;
}

.form-floating .form-select {
  height: 60px;
  padding: 1rem 0.75rem 0.25rem 0.75rem;
}

.form-floating textarea.form-control {
  height: auto;
  padding: 1.25rem 0.75rem 0.25rem 0.75rem;
}

.form-floating label {
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  color: #6c757d;
  font-size: 1rem;
}

.form-floating .form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(7, 109, 177, 0.25);
}

.form-floating .form-control:focus ~ label,
.form-floating .form-control:not(:placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  color: var(--secondary-color);
}

.form-control.is-invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 0.2rem rgba(200, 9, 25, 0.25);
}

.form-control.is-valid {
  border-color: var(--green);
  box-shadow: 0 0 0 0.2rem rgba(53, 181, 24, 0.25);
}

.invalid-feedback {
  color: var(--red);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

/* Submit Button */
.contact-submit-btn {
  width: 100%;
  padding: 15px 30px;
  background: var(--gradient-color);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.contact-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(8, 39, 85, 0.3);
}

.contact-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contact Info Section */
.contact-info-section {
  background: var(--gradient-color);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-info-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23ffffff10" stroke-width="2"/><circle cx="30" cy="30" r="20" fill="none" stroke="%23ffffff08" stroke-width="1"/><circle cx="70" cy="70" r="15" fill="none" stroke="%23ffffff06" stroke-width="1.5"/></svg>');
  opacity: 0.1;
}

.contact-info-card {
  padding: 1.5rem 1rem;
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.contact-info-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.contact-info-card > p {
  opacity: 0.9;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* Contact Methods */
.contact-methods {
  /* flex-grow: 1; */
  /* margin-bottom: 1rem; */
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: var(--transition);
  cursor: pointer;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.method-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  transition: var(--transition);
}

.method-icon i {
  font-size: 1.2rem;
  color: var(--white);
}

.method-content {
  flex-grow: 1;
}

.method-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.method-content p {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  opacity: 0.9;
  font-weight: 500;
}

.method-content span {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* CTA Section */
.cta-section {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  border-radius: 12px;
  text-align: center;
}

.cta-section h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.cta-section p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.demo-btn {
  background: var(--white);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.demo-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
  color: var(--primary-color);
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--primary-color);
}

.trust-item i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.trust-item span {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Alert Styles */
.alert {
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border: none;
  display: flex;
  align-items: center;
}

.alert-success {
  background-color: rgba(53, 181, 24, 0.1);
  color: var(--green);
  border-left: 4px solid var(--green);
}

.alert-danger {
  background-color: rgba(200, 9, 25, 0.1);
  color: var(--red);
  border-left: 4px solid var(--red);
}

/* Responsive Design for Contact Page */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-info-section {
    order: -1;
  }

  .contact-info-card {
    padding: 2rem;
  }

  /* .contact-methods {
    margin-bottom: 1.5rem;
  } */
}

@media (max-width: 768px) {
  .contact-hero .hero-title {
    font-size: 2.5rem;
  }

  .contact-hero .hero-subtitle {
    font-size: 1.1rem;
  }

  .contact-section {
    padding: 3rem 0;
  }

  /* .contact-form-section {
    padding: 1.5rem;
  } */

  .contact-info-card {
    padding: 2rem 1.5rem;
  }

  .contact-method {
    padding: 0.75rem;
  }

  .method-icon {
    width: 40px;
    height: 40px;
  }

  .trust-indicators {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
  }

  .trust-item {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 120px;
  }
}

@media (max-width: 576px) {
  .contact-wrapper {
    margin: 0 1rem;
    border-radius: 15px;
  }

  .contact-form-section {
    padding: 1.5rem;
  }

  .contact-info-card {
    padding: 1.5rem;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }

  .trust-item {
    flex: none;
  }
}

/* Animations */
.fa-bounce {
  animation: bounce 1s ease-in-out;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .form-control {
    border-width: 3px;
  }

  .contact-submit-btn {
    border: 2px solid var(--white);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .scroll-top,
  .loading {
    display: none !important;
  }

  .hero-section {
    background: white !important;
    color: black !important;
  }

  .section {
    page-break-inside: avoid;
  }

  .contact-hero {
    background: white !important;
    color: black !important;
    min-height: auto !important;
  }

  .contact-info-section {
    background: white !important;
    color: black !important;
    border: 2px solid black;
  }

  .contact-section {
    page-break-inside: avoid;
  }
}

/* ===== CONTACT PAGE CSS ENDS HERE ===== */

/* ===== PRODUCTS PAGE CSS STYLES START HERE ===== */

/* Products Hero Section */
.products-hero {
  background: var(--gradient-color);
  min-height: 40vh;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.products-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff05" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
}

.products-hero .hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.products-hero .hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* Products Section */
.products-section {
  padding: 2rem 0;
  background: #f8f9ff;
}

/* Features Section */
.features-section {
  margin-bottom: 1rem;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(8, 39, 85, 0.08);
  transition: var(--transition);
  height: 100%;
  border-left: 4px solid var(--secondary-color);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(8, 39, 85, 0.15);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(7, 109, 177, 0.1),
    rgba(8, 39, 85, 0.1)
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.feature-icon i {
  font-size: 2rem;
  color: var(--secondary-color);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  background: var(--gradient-color);
}

.feature-card:hover .feature-icon i {
  color: var(--white);
}

.feature-content h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-content p {
  color: #666;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Process Steps */
.process-section {
  margin-bottom: 0.5rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(8, 39, 85, 0.08);
  transition: var(--transition);
  height: 100%;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(8, 39, 85, 0.15);
}

.step-icon {
  margin-bottom: 1.5rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-color);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  transition: var(--transition);
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(8, 39, 85, 0.3);
}

.process-step h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.process-step p {
  color: #666;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Benefits Grid */
.benefits-grid-section {
  margin-bottom: 1rem;
}

.benefit-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(8, 39, 85, 0.08);
  transition: var(--transition);
  height: 100%;
  display: flex;
  align-items: flex-start;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(8, 39, 85, 0.15);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(7, 109, 177, 0.1),
    rgba(8, 39, 85, 0.1)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.benefit-icon i {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.benefit-card:hover .benefit-icon {
  background: var(--gradient-color);
}

.benefit-card:hover .benefit-icon i {
  color: var(--white);
}

.benefit-content h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.benefit-content p {
  color: #666;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Capabilities Section */
.capabilities-section {
  margin-bottom: 1rem;
}

.capability-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(8, 39, 85, 0.08);
  transition: var(--transition);
  height: 100%;
  text-align: center;
}

.capability-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(8, 39, 85, 0.15);
}

.capability-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(7, 109, 177, 0.1),
    rgba(8, 39, 85, 0.1)
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.capability-icon i {
  font-size: 2rem;
  color: var(--secondary-color);
}

.capability-card:hover .capability-icon {
  background: var(--gradient-color);
  transform: scale(1.1);
}

.capability-card:hover .capability-icon i {
  color: var(--white);
}

.capability-content h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.capability-content p {
  color: #666;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Impact Highlight */
.impact-highlight-section {
  margin-bottom: 2rem;
}

.impact-card {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: var(--white);
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(40, 167, 69, 0.3);
  display: flex;
  align-items: center;
  text-align: center;
}

.impact-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  flex-shrink: 0;
}

.impact-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.impact-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.impact-content p {
  font-size: 1.1rem;
  margin-bottom: 0;
  opacity: 0.9;
  line-height: 1.6;
}

/* Demo Showcase */
.demo-showcase {
  margin-bottom: 2rem;
}

.demo-container {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.demo-header {
  text-align: center;
  margin-bottom: 2rem;
}

.demo-header h3 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.demo-header p {
  color: #666;
  margin-bottom: 0;
}

.demo-mockup {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(8, 39, 85, 0.1);
  position: relative;
}

.demo-mockup::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 1.5s;
  z-index: 1;
}

.demo-mockup:hover::before {
  left: 100%;
}

.mockup-browser {
  background: #f8f9fa;
  position: relative;
  z-index: 2;
}

.browser-bar {
  background: linear-gradient(135deg, #e9ecef, #dee2e6);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #ced4da;
  display: flex;
  align-items: center;
}

.browser-dots {
  display: flex;
  margin-right: 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.dot.red {
  background: #ff5f56;
}
.dot.yellow {
  background: #ffbd2e;
}
.dot.green {
  background: #27ca3f;
}

.browser-title {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.95rem;
}

.browser-content {
  padding: 2rem;
  background: var(--white);
}

.dashboard-section {
  text-align: center;
}

.section-header {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Feature Tags */
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.tag {
  background: rgba(7, 109, 177, 0.1);
  color: var(--secondary-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Demo Stats */
.demo-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat {
  text-align: center;
  padding: 1rem;
  background: rgba(7, 109, 177, 0.05);
  border-radius: 10px;
}

.demo-stats .stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  display: block;
}

.shield-stats .stat-label {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.25rem;
}

/* Shield Demo Specific */
.shield-stats {
  margin-top: 1rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-box {
  text-align: center;
  padding: 1rem;
  background: rgba(7, 109, 177, 0.05);
  border-radius: 10px;
}

.stat-box .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  display: block;
}

.stat-box .stat-label {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.25rem;
}

/* Flow Demo Specific */
.kiosk-interface {
  margin-top: 1rem;
}

.interface-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.interface-row:last-child {
  margin-bottom: 0;
}

.interface-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: rgba(7, 109, 177, 0.05);
  border-radius: 10px;
  transition: var(--transition);
}

.interface-item:hover {
  background: rgba(7, 109, 177, 0.1);
}

.interface-item i {
  color: var(--secondary-color);
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

.interface-item span {
  color: #666;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Pricing & CTA Section */
.pricing-cta-section {
  margin-bottom: 0.5rem;
}

.pricing-cta-section.special {
  background: linear-gradient(
    135deg,
    rgba(40, 167, 69, 0.1),
    rgba(32, 201, 151, 0.1)
  );
  padding: 2rem;
  border-radius: 20px;
}

.pricing-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.pricing-card.special {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: var(--white);
  box-shadow: 0 15px 40px rgba(40, 167, 69, 0.3);
}

.price-display {
  margin-bottom: 2rem;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  display: block;
}

.pricing-card.special .price-amount {
  color: var(--white);
}

.price-period {
  font-size: 1.2rem;
  color: #666;
  font-weight: 500;
  margin-top: 0.5rem;
  display: block;
}

.pricing-card.special .price-period {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.pricing-card.special .pricing-description {
  color: rgba(255, 255, 255, 0.9);
}

.cta-btn {
  background: var(--gradient-color);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(8, 39, 85, 0.3);
  border: none;
  font-size: 1.1rem;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(8, 39, 85, 0.4);
  color: var(--white);
  text-decoration: none;
}

.product-nav {
  background: var(--white);
  border-radius: 15px;
  padding: 0.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}

.product-nav-btn {
  background: transparent !important;
  border: none !important;
  color: var(--primary-color) !important;
  padding: 1rem 2rem !important;
  border-radius: 12px !important;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
}

.product-nav-btn:hover {
  background: rgba(7, 109, 177, 0.1) !important;
  transform: translateY(-2px);
}

.product-nav-btn.active {
  background: var(--gradient-color) !important;
  color: var(--white) !important;
  box-shadow: 0 5px 15px rgba(8, 39, 85, 0.3);
}

.product-nav-btn i {
  font-size: 1.2rem;
}

.cta-btn.secondary {
  background: var(--white);
  color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
  color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
}

.cta-btn i {
  margin-right: 0.5rem;
}

/* Animations */
.ai-pulse {
  animation: aiPulse 2s ease-in-out infinite;
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
}

@keyframes aiPulse {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .product-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .impact-card {
    flex-direction: column;
    text-align: center;
  }

  .impact-icon {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .products-hero .hero-title {
    font-size: 2.5rem;
  }

  .products-hero .hero-subtitle {
    font-size: 1.2rem;
  }

  .product-hero {
    padding: 3rem 0 2rem;
  }

  .product-title {
    font-size: 2rem;
  }

  .product-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-card,
  .benefit-card,
  .capability-card,
  .process-step {
    margin-bottom: 2rem;
  }

  .benefit-card {
    flex-direction: column;
    text-align: center;
  }

  .benefit-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .demo-stats {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .interface-row {
    grid-template-columns: 1fr;
  }

  .impact-content h3 {
    font-size: 1.5rem;
  }

  .impact-content p {
    font-size: 1rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .browser-content {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .product-nav {
    flex-direction: column;
    padding: 0.5rem;
  }

  .product-nav-btn {
    margin-bottom: 0.5rem;
    min-width: auto;
    width: 100%;
  }

  .product-nav-btn:last-child {
    margin-bottom: 0;
  }

  .feature-tags {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .pricing-card {
    padding: 2rem 1rem;
  }

  .demo-container {
    padding: 1rem;
  }

  .browser-content {
    padding: 1rem;
  }
}

/* Enhanced Hover Effects */
.feature-card:hover,
.benefit-card:hover,
.capability-card:hover,
.process-step:hover {
  cursor: pointer;
}

/* Loading Animation for Demo */
.demo-mockup {
  position: relative;
  overflow: hidden;
}

.demo-mockup:hover {
  animation: subtle-glow 2s ease-in-out;
}

@keyframes subtle-glow {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(8, 39, 85, 0.1);
  }
  50% {
    box-shadow: 0 15px 40px rgba(8, 39, 85, 0.2);
  }
}

/* ===== PRODUCTS PAGE CSS STYLES END HERE =====

/* ===== ABOUT PAGE STYLES START HERE ===== */

/* About Hero Section */
.about-hero {
  background: var(--gradient-color);
  min-height: 40vh;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff05" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
}

.about-hero .hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.about-hero .hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* Mission Section */
.about-mission {
  padding: 3rem 0;
}

.mission-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.mission-subtitle {
  font-size: 1.3rem;
  color: #666;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.mission-main-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(8, 39, 85, 0.1);
  text-align: center;
  border-left: 4px solid var(--secondary-color);
}

.mission-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 0;
}

.visual-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(8, 39, 85, 0.08);
  transition: var(--transition);
  height: 100%;
  text-align: center;
  border-left: 4px solid var(--secondary-color);
}

.visual-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(8, 39, 85, 0.15);
}

.visual-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(7, 109, 177, 0.1),
    rgba(8, 39, 85, 0.1)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.visual-icon i {
  font-size: 1.8rem;
  color: var(--secondary-color);
}

.visual-card:hover .visual-icon {
  background: var(--gradient-color);
  transform: scale(1.1);
}

.visual-card:hover .visual-icon i {
  color: var(--white);
}

.visual-card h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.visual-card p {
  color: #666;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Values Section */
.about-values {
  padding: 3rem 0;
}

.value-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(8, 39, 85, 0.08);
  transition: var(--transition);
  height: 100%;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(8, 39, 85, 0.15);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.value-icon i {
  font-size: 2.2rem;
  color: var(--white);
}

.value-card:hover .value-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(8, 39, 85, 0.3);
}

.value-card h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.value-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Impact Section */
.about-impact {
  padding: 2rem 0;
  background: var(--gradient-color);
  color: var(--white);
}

.about-impact .section-title,
.about-impact .section-subtitle {
  color: var(--white);
}

.impact-stat {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.impact-stat:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.impact-stat .stat-number {
  font-size: 3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.impact-stat .stat-label {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Why Choose Us Section */
.about-why {
  padding: 2rem 0;
}

.why-item {
  display: flex;
  align-items: flex-start;
  /* margin-bottom: 2rem; */
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(8, 39, 85, 0.08);
  transition: var(--transition);
  min-height: 210px;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(8, 39, 85, 0.15);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(7, 109, 177, 0.1),
    rgba(8, 39, 85, 0.1)
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-icon i {
  font-size: 2rem;
  color: var(--secondary-color);
}

.why-item:hover .why-icon {
  background: var(--gradient-color);
  transform: scale(1.1);
}

.why-item:hover .why-icon i {
  color: var(--white);
}

.why-content h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.why-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* CTA Section */
.about-cta {
  padding: 4rem 0;
  background: linear-gradient(45deg, #f8f9ff 0%, #e6f2ff 100%);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
  .mission-main-content {
    padding: 2rem;
  }

  .why-item {
    flex-direction: column;
    text-align: center;
  }

  .why-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .about-hero .hero-title {
    font-size: 2.5rem;
  }

  .about-hero .hero-subtitle {
    font-size: 1.2rem;
  }

  .mission-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .visual-card,
  .value-card {
    padding: 2rem 1.5rem;
  }

  .why-item {
    padding: 1.5rem;
  }

  .impact-stat {
    padding: 1.5rem 1rem;
  }
}

/* Animation enhancements */
.fa-bounce {
  animation: bounce 1s ease-in-out;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ===== ABOUT PAGE STYLES END HERE ===== */

/* ===== CONTACT MODAL STYLES START HERE ===== */

/* Modal Overlay */
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

.modal.show .modal-dialog {
  transform: none;
}

/* Modal Content */
.contact-modal-content {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: 0 25px 50px rgba(8, 39, 85, 0.3);
  overflow: hidden;
}

/* Modal Header */
.contact-modal-header {
  background: var(--gradient-color);
  color: var(--white);
  padding: 1rem 2rem;
  border-bottom: none;
  position: relative;
}

.contact-modal-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23ffffff10" stroke-width="2"/></svg>');
  opacity: 0.1;
}

.contact-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.contact-modal-close {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  opacity: 1;
  /* position: relative;  */
  z-index: 2;
  transition: var(--transition);
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

.contact-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.contact-modal-close:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

/* Modal Body */
.contact-modal-body {
  padding: 1rem;
  background: var(--white);
}

.contact-modal-description {
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-modal-description p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Modal Form Styles */
.contact-modal-floating {
  position: relative;
  margin-bottom: 0.5rem;
}

.contact-modal-input,
.contact-modal-textarea {
  height: 60px;
  padding: 1rem 0.75rem 0.25rem 0.75rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  transition: var(--transition);
  background: #fff;
}

.contact-modal-textarea {
  height: auto;
  padding: 1.25rem 0.75rem 0.25rem 0.75rem;
  resize: vertical;
  min-height: 120px;
}

.contact-modal-floating label {
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  color: #6c757d;
  font-size: 1rem;
}

.contact-modal-input:focus,
.contact-modal-textarea:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(7, 109, 177, 0.25);
  outline: none;
}

.contact-modal-input:focus ~ label,
.contact-modal-input:not(:placeholder-shown) ~ label,
.contact-modal-textarea:focus ~ label,
.contact-modal-textarea:not(:placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  color: var(--secondary-color);
}

.contact-modal-input.is-invalid,
.contact-modal-textarea.is-invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 0.2rem rgba(200, 9, 25, 0.25);
}

.contact-modal-input.is-valid,
.contact-modal-textarea.is-valid {
  border-color: var(--green);
  box-shadow: 0 0 0 0.2rem rgba(53, 181, 24, 0.25);
}

/* Submit Button */
.contact-modal-submit-btn {
  width: 100%;
  padding: 15px 30px;
  background: var(--gradient-color);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.contact-modal-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(8, 39, 85, 0.3);
}

.contact-modal-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Modal Footer */
.contact-modal-footer {
  background: #f8f9ff;
  padding: 1rem 2rem;
  border-top: 1px solid rgba(8, 39, 85, 0.1);
}

.contact-modal-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}

.contact-modal-trust .trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--primary-color);
  font-size: 0.85rem;
}

.contact-modal-trust .trust-item i {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--secondary-color);
}

.contact-modal-trust .trust-item span {
  font-weight: 500;
}

/* Modal Alert Styles */
.contact-modal-alert {
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border: none;
  display: flex;
  align-items: center;
}

.contact-modal-alert.alert-success {
  background-color: rgba(53, 181, 24, 0.1);
  color: var(--green);
  border-left: 4px solid var(--green);
}

.contact-modal-alert.alert-danger {
  background-color: rgba(200, 9, 25, 0.1);
  color: var(--red);
  border-left: 4px solid var(--red);
}

/* ========== Team Section ========== */
        #team {
            background: #f8fafc;
            position: relative;
            overflow: hidden;
        }

        #team::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
        }

        .team-carousel-wrapper {
            position: relative;
        }

        .team-member {
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s ease;
            height: 100%;
            padding: 2rem;
            text-align: center;
        }

        .team-member:hover {
            transform: translateY(-8px);
        }

        .team-img-container {
            position: relative;
            width: 140px;
            height: 140px;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--secondary-color);
            transition: all 0.4s ease;
        }

        .team-img-container img {
            width: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .team-member:hover .team-img-container {
            border-color: var(--primary-color);
            box-shadow: 0 10px 30px rgba(8, 39, 85, 0.2);
        }

        .team-member:hover .team-img-container img {
            transform: scale(1.05);
        }

        .team-info {
            padding: 0;
        }

        .team-info h5 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 0.5rem;
        }

        .team-info .designation {
            display: block;
            font-size: 0.9rem;
            color: var(--secondary-color);
            font-weight: 600;
            letter-spacing: 0.3px;
        }

        /* Carousel Controls */
      .team-carousel-control {
        position: absolute;
        top: 60%;
        transform: translateY(-60%);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #ffffff;
        border: 2px solid #e2e8f0;
        color: #2563eb;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all 0.3s ease;
        padding: 5px;
        z-index: 10;
        cursor: pointer;
      }

      .team-prev {
        left: -50px;
      }

      .team-next {
        right: -50px;
      }

      .team-carousel-control:hover {
        background: var(--gradient-color);
        color: #ffffff;
        transform: translateY(-50%) scale(1.1);
      }

        /* Responsive Design */
        @media (max-width: 1199px) {
            .team-prev {
                left: -25px;
            }
            .team-next {
                right: -25px;
            }
        }

        @media (max-width: 991px) {
            .team-carousel-control {
                width: 45px;
                height: 45px;
                font-size: 16px;
            }
            .team-prev {
                left: -15px;
            }
            .team-next {
                right: -15px;
            }
            .team-img-container {
                width: 160px;
                height: 160px;
            }
        }

        @media (max-width: 767px) {
            .team-carousel-control {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }
            .team-prev {
                left: 0;
            }
            .team-next {
                right: 0;
            }
            .team-img-container {
                width: 150px;
                height: 150px;
            }
            .team-member {
                padding: 1.5rem;
            }
        }

        @media (max-width: 575px) {
            .team-img-container {
                width: 140px;
                height: 140px;
            }
            .section-title {
                font-size: 2rem;
            }
        }

/* Responsive Design for Modal */
@media (max-width: 768px) {
  .contact-modal-body {
    padding: 1.5rem;
  }

  .contact-modal-header {
    padding: 1.25rem 1.5rem;
  }

  .contact-modal-footer {
    padding: 1rem 1.5rem;
  }

  .contact-modal-trust {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .contact-modal-trust .trust-item {
    flex: 1 1 calc(33.333% - 0.5rem);
    min-width: 80px;
  }
}

@media (max-width: 576px) {
  .modal-lg {
    max-width: 95%;
    margin: 1rem auto;
  }

  .contact-modal-title {
    font-size: 1.3rem;
  }

  .contact-modal-trust .trust-item {
    flex: 1 1 100%;
  }

  .contact-modal-trust {
    gap: 0.75rem;
  }
}

/* Animation enhancements for modal */
.contact-modal-content {
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .contact-modal-input,
  .contact-modal-textarea {
    border-width: 3px;
  }

  .contact-modal-submit-btn {
    border: 2px solid var(--white);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .contact-modal-content {
    animation: none;
  }

  .modal.fade .modal-dialog {
    transition: none;
  }
}

/* ===== CONTACT MODAL STYLES END HERE ===== */
