   /* Reset & basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f5f5f5;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.2rem;
  color: #007bff;
}

.logo img {
  height: 30px;
  margin-right: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #007bff;
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

.auth-buttons a {
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: 0.3s;
}

.auth-buttons .signin {
  color: #333;
}

.auth-buttons .signup {
  background: #007bff;
  color: white;
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  color: #000;
  padding: 4rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
}

/* Modules Section */
.modules {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 2rem;
}

.module-icon {
  background: #2b2f3a;
  border-radius: 12px;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #00c6ff;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.module-icon i {
  font-size: 32px;
  margin-bottom: 10px;
}

.module-icon:hover {
  background: linear-gradient(90deg, #007bff, #00c6ff);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,198,255,0.4);
}

/* Lead Card */
.lead-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 900px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.lead-card h3 {
  color: #4e54c8;
  margin-bottom: 1rem;
}

.lead-card ul {
  list-style: none;
  padding-left: 0;
}

.lead-card ul li::before {
  content: "✔️";
  margin-right: 0.5rem;
  color: #4e54c8;
}

/* Hub Section */
.container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem;
}

.hub {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 16px #eee;
  padding: 2rem;
  flex: 1 1 264px; /* responsive width */
  min-width: 250px;
  margin-bottom: 1rem;
}

.hub h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.hub p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.hub ul {
  list-style: none;
  padding: 0;
}

.hub ul li {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* Login Section */
main .container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

main .left, main .right {
  flex: 1 1 300px;
  min-width: 280px;
}

.left {
  padding: 3rem;
  background: #2b2f3a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ccc;
}

.left h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00c6ff;
}

.left p {
  font-size: 1rem;
  line-height: 1.6;
}

.right {
  padding: 3rem;
}

.right h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #00c6ff;
}

form {
  display: flex;
  flex-direction: column;
}

input[type="text"],
input[type="password"] {
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 6px;
  color: white;
  transition: 0.3s;
}

input::placeholder {
  color: #aaa;
}


input[type="text"]:focus,
input[type="password"]:focus {
  outline: none;
  border: 1px solid #00c6ff;

}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #fff;
}

.options label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.options a {
  color: #00c6ff;
  text-decoration: none;
}

.options a:hover {
  text-decoration: underline;
}

button {
  padding: 0.8rem;
  background: linear-gradient(90deg, #00c6ff, #007bff);
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: linear-gradient(90deg, #007bff, #00c6ff);
}

.register {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  color: #fff;
}

.register a {
  color: #00c6ff;
  text-decoration: none;
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #909cbe;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  font-size: 0.9rem;
  max-width: 250px;
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 10px rgba(0,0,0,0.3); }
  50% { box-shadow: 0 0 20px rgba(0,198,255,0.6); }
  100% { box-shadow: 0 0 10px rgba(0,0,0,0.3); }
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 1rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 0.5rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .container, main .container {
    flex-direction: column;
    align-items: center;
  }

  .hub, main .left, main .right {
    width: 90%;
  }

  .module-icon {
    max-width: 100px;
    height: 100px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
.landing-cta-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  padding: 2.5rem 5vw;
  background: #fff;
}
.cta-content {
  max-width: 540px;
}
.breadcrumb {
  color: #909090;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.cta-content h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0 0 0.7rem 0;
}
.cta-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 1.1rem 0;
  line-height: 1.1;
}
.cta-content h1 span {
  font-weight: 900;
}
.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 1.8rem;
}
.cta-buttons {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 1.2rem;
}
.start-btn {
  background: #000;
  color: #fff;
  font-size: 1.15rem;
  border: none;
  padding: 1rem 2.2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}
.demo-btn {
  background: #fff;
  border: 2px solid #000;
  color: #222;
  font-size: 1.15rem;
  padding: 1rem 2.2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}
.setup-info {
  font-size: 1rem;
  color: #404040;
  margin-bottom: 1rem;
}
.ratings {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  margin-top: 0.8rem;
}
.stars {
  color: #FFA500;
  font-size: 1rem;
  font-weight: bold;
}

.cta-image img {
  border-radius: 18px;
  box-shadow: 0 4px 40px #ccd1d5;
  width: 59vw;
    min-width: 360px;
    max-width: 797px;
    /*margin-top: 67px;*/
    border-radius: 10px;
    width: 100%;
    margin-left: -47px;
    box-shadow: 0 4px 54px #00000026;
}
.tool-hero-image-lines {
    /*background-image: url(https://cdn.prod.website-files.com/58cbec1…/669fbce…_tool-hero-grid-c.png);*/
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    margin-left: 40px;
    padding-top: 40px;
    padding-bottom: 25px;
    padding-right: 30px;
    background-color: #2e2e2e;
    background-image: linear-gradient(69deg, #4cb61900, #000);
    border-radius: 40px;
    margin-top: 65px;
}
.tools-template-category-image {
    /* background-color: #696969; */
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    border: 6px solid #fff;
    border-radius: 16px;
    height: 350px;
    box-shadow: 0 0 1px 1px #0000000d;
}
.tools-template-category-item {
    color: #000;
    background-color: #f1f2f7;
    border-radius: 20px;
    width: 280px;
    margin: 10px 20px 10px 0;
    position: relative;
}
.landing-cta-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem 2rem;
  background: #f8f9fa;
}

.cta-content {
  flex: 1 1 400px;
  max-width: 600px;
}

.cta-content .breadcrumb {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.cta-content h3 {
  font-size: 1.3rem;
  color: #007bff;
  margin-bottom: 0.5rem;
}

.cta-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content h1 span {
  color: #2de636;
}

.cta-content p {
  font-size: 1rem;
  color: #495057;
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cta-buttons button {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.start-btn {
  background: #007bff;
  color: #fff;
}

.start-btn:hover {
  background: #0056b3;
}

.demo-btn {
  background: #e9ecef;
  color: #495057;
}

.demo-btn:hover {
  background: #ced4da;
}

.setup-info {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

.ratings {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #495057;
}

.ratings .stars {
  color: #ffc107;
  margin-right: 0.3rem;
}

.tool-hero-image-lines {
  flex: 1 1 240px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .landing-cta-section {
    flex-direction: column-reverse;
    text-align: center;
    padding: 2rem 1rem;
  }

  .cta-content, .tool-hero-image-lines {
    max-width: 94%;
    margin-left: 34px;
  }

  .cta-buttons {
    justify-content: center;
  }

  .ratings {
    justify-content: center;
  }
}

/* CTA Section Styles */
.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  background: #f8f9fa;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-image-wrapper {
  flex: 1 1 400px;
  text-align: center;
}

.cta-image {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.cta-text {
  flex: 1 1 500px;
}

.cta-breadcrumb {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: #2de636;
  margin-bottom: 0.5rem;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-title span {
  color: #00c6ff;
}

.cta-description {
  font-size: 1rem;
  color: #495057;
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.start-btn {
  background: linear-gradient(90deg, #00c6ff, #007bff);
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.start-btn:hover {
  background: linear-gradient(90deg, #007bff, #00c6ff);
}

.demo-btn {
  background: #fff;
  border: 2px solid #007bff;
  color: #007bff;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.demo-btn:hover {
  background: #007bff;
  color: #fff;
}

.cta-setup-info {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

.cta-ratings {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #495057;
}

.rating-logo {
  height: 32px;
}

.stars {
  color: #ffc107;
  margin-left: 0.5rem;
}

.rating-text {
  margin-left: 0.3rem;
  color: #495057;
}

/* Responsive */
@media (max-width: 992px) {
  .cta-section {
    flex-direction: column;
    text-align: center;
  }
  .cta-text {
    flex: 1 1 100%;
  }
  .cta-buttons {
    justify-content: center;
  }
  .cta-ratings {
    justify-content: center;
  }
}
  /* Default: hide mobile-auth on desktop + tablet */
.mobile-auth {
  display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    padding: 0 10px;
  }

  .mobile-auth a {
    text-align: center;
    padding: 8px 10px;
    border-radius: 5px;
  }

  .mobile-auth .signin {
    border: 1px solid white;

  }

  .mobile-auth .signup {
    background: white;
    color: #0d6efd;
    font-weight: bold;
  }
}

/* ===== BASE STYLE ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*background: #b4ffa0;*/
  padding: 0px 20px;
  color: white;
  font-family: Arial, sans-serif;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
}

.logo img {
  margin-right: 8px;
}

.nav-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.nav-links a {
  /*color: white;*/
  text-decoration: none;
  font-size: 15px;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Sign-in/up desktop buttons */
.auth-buttons a {
  margin-left: 10px;
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
}

.auth-buttons .signin {
  border: 1px solid white;
  
}

.auth-buttons .signup {
  background: white;
  color: #0d6efd;
  font-weight: bold;
}

/* Hide menu toggle on desktop */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    /*background: #0d6efd;*/
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 10px;
    text-align: center;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  /* Hide desktop Sign In/Up */
  .auth-buttons {
    display: none;
  }

  /* Show Sign In/Up inside mobile menu */
  .mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    padding: 0 10px;

  }

  .mobile-auth a {
    text-align: center;
    padding: 8px 10px;
    border-radius: 5px;
  }

  .mobile-auth .signin {
    border: 1px solid white;
  }

  .mobile-auth .signup {
    background: white;
    color: #0d6efd;
    font-weight: bold;
  }
}
nav .mobile-auth {
  display: none;
}

@media (max-width: 768px) {
  nav .mobile-auth {
    display: flex !important;
  }
}
.signup-btn {
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
  border: 2px solid white;
  background: white;
  color: #0d6efd;
  cursor: pointer;
  transition: 0.3s;
}

.signup-btn:hover {
  background: #e6e6e6;
}

.nav-links a {
  text-decoration: none; /* remove underline */
  color: #333;           /* default text color */
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}


.nav-links a {
  text-decoration: none; /* underline remove */
  color: #333;           /* default text color */
  padding: 5px 10px;
  border-radius: 5px;
  transition: color 0.3s ease; /* smooth color transition */
  font-size: 16px;
}

.nav-links a:hover {
  color: #0d6efd; /* hover text color */
  text-decoration: none; /* ensure underline stays removed */
}
.auth-buttons a {
  padding: 10px 20px;
  border-radius: 8px;       /* Rounded corners */
  text-decoration: none;     /* Remove underline */
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  margin-left: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2); /* Shadow */
}

/* Sign In - Bordered Button */
.auth-buttons .signin {
  border: 2px solid #0d6efd;
  color: #0d6efd;
  background: white;
}

.auth-buttons .signin:hover {
  background: #0d6efd;
  color: white;
  box-shadow: 0 6px 10px rgba(0,0,0,0.3); /* Bigger shadow on hover */
  transform: translateY(-2px);           /* Lift effect */
}

/* Sign Up - Filled Button */
.auth-buttons .signup {
  background: #020000;
  color: white;
}

.auth-buttons .signup:hover {
  background: #0056b3;                     /* Darker blue on hover */
  color: white;
  box-shadow: 0 6px 10px rgba(0,0,0,0.3); /* Bigger shadow on hover */
  transform: translateY(-2px);           /* Lift effect */
}
.logo {
  display: flex;            /* Flex row */
  align-items: center;      /* Vertical center alignment */
  gap: 10px;                /* Space between image and text */
  font-weight: bold;
  font-size: 18px;
  color: #0d6efd;           /* Optional text color */
}

.logo img {
  height: 70px;             /* Set height */
  width: auto;              /* Maintain aspect ratio */
  object-fit: contain;      /* Make sure image fits nicely */
}
/* Footer Container */
.main-footer {
  background: #0d1b2a;
  color: #fff;
  font-family: Arial, sans-serif;
  padding-top: 40px;
}

/* Footer Grid */
.footer-top .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Company Info */
.footer-about .footer-logo {
  margin-bottom: 10px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  color: white;
  font-size: 16px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #0d6efd;
}

/* Links */
.footer-links h4 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: bold;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #0d6efd;
}

/* Newsletter */
.footer-newsletter h4 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-newsletter p {
  font-size: 14px;
  margin-bottom: 15px;
}

.footer-newsletter form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-newsletter input[type="email"] {
  padding: 8px 12px;
  border-radius: 5px;
  border: none;
  flex: 1;
}

.footer-newsletter button {
  padding: 8px 16px;
  border-radius: 5px;
  border: none;
  background: #0d6efd;
  color: white;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.footer-newsletter button:hover {
  background: #0056b3;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 15px 20px;
  background: #091025;
  font-size: 14px;
  margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-newsletter form {
    flex-direction: column;
  }

  .footer-newsletter input[type="email"],
  .footer-newsletter button {
    width: 100%;
  }
}
 /* Page Header */
    .contact-header {
      background: #0d6efd;
      color: white;
      text-align: center;
      padding: 60px 20px;
    }

    .contact-header h1 {
      margin: 0;
      font-size: 36px;
    }

    .contact-header p {
      margin: 10px 0 0;
      font-size: 18px;
    }

    /* Contact Section */
    .contact-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      max-width: 1200px;
      margin: 40px auto;
      gap: 40px;
      padding: 0 20px;
    }

    /* Contact Info */
    .contact-info {
      background: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .contact-info h2 {
      margin-top: 0;
      font-size: 24px;
      margin-bottom: 20px;
      color: #0d6efd;
    }

    .contact-info p {
      margin: 10px 0;
      font-size: 16px;
    }

    .contact-info a {
      color: #0d6efd;
      text-decoration: none;
    }

    .contact-info a:hover {
      text-decoration: underline;
    }

    .contact-info .social-icons a {
      display: inline-block;
      margin-right: 10px;
      font-size: 20px;
      color: #0d6efd;
      transition: color 0.3s;
    }

    .contact-info .social-icons a:hover {
      color: #0056b3;
    }

    /* Contact Form */
    .contact-form {
      background: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .contact-form h2 {
      margin-top: 0;
      font-size: 24px;
      margin-bottom: 20px;
      color: #0d6efd;
    }

    .contact-form form {
      display: flex;
      flex-direction: column;
    }

    .contact-form input, 
    .contact-form textarea {
      padding: 12px;
      margin-bottom: 15px;
      border-radius: 5px;
      border: 1px solid #ccc;
      font-size: 16px;
      width: 100%;
      box-sizing: border-box;
    }

    .contact-form textarea {
      resize: vertical;
      min-height: 120px;
    }

    .contact-form button {
      background: #0d6efd;
      color: white;
      padding: 12px;
      border: none;
      border-radius: 5px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
    }

    .contact-form button:hover {
      background: #0056b3;
      transform: translateY(-2px);
    }

    /* Map Section */
    .contact-map {
      margin-top: 40px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 20px;
    }

    .contact-map iframe {
      width: 100%;
      height: 400px;
      border: 0;
      border-radius: 10px;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .contact-section {
        grid-template-columns: 1fr;
      }
      .contact-map iframe {
        height: 300px;
      }
    }
    .subscription-section {
  background: linear-gradient(135deg, #0d6efd, #00c6ff);
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: white;
  margin-bottom: 50px;
  font-weight: bold;
}

.subscription-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Card Styling */
.subscription-card {
  background: linear-gradient(145deg, #ffffff, #f0f4f8);
  border-radius: 20px;
  padding: 30px 20px;
  width: 230px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s, background 0.4s;
}

.subscription-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  background: linear-gradient(145deg, #f8f9fa, #e3f2fd);
}

.subscription-card .badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #ff4c3b;
  color: white;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 15px;
  font-weight: bold;
}

.plan-name {
  font-size: 24px;
  color: #0d6efd;
  margin-bottom: 10px;
}

.plan-price {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}

.plan-price span {
  font-size: 14px;
  font-weight: normal;
  color: #555;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.plan-features li {
  margin-bottom: 10px;
  color: #333;
  font-size: 16px;
}

.plan-features li i {
  color: #0d6efd;
  margin-right: 8px;
}

/* Subscribe Button */
.subscribe-btn {
  background: #0d6efd;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.3s, transform 0.2s;
}

.subscribe-btn:hover {
  background: #0056b3;
  transform: translateY(-3px) scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .subscription-container {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .subscription-container {
    flex-direction: column;
    align-items: center;
  }

  .subscription-card {
    width: 90%;
  }
}
.contact-info {
  background: #f5f6fa; /* optional background */
  padding: 30px 20px;
  border-radius: 12px;
  max-width: 500px; /* width limit */
  margin: 50px auto; /* horizontal centering + top/bottom spacing */
  text-align: center; /* center text */
  box-shadow: 0 8px 20px rgba(0,0,0,0.1); /* optional shadow */
}

.contact-info h2 {
  font-size: 28px;
  color: #0d6efd;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  margin: 8px 0;
}

.contact-info a {
  color: #0d6efd;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center; /* center horizontally */
  gap: 15px;
}

.social-icons a {
  font-size: 20px;
  color: #0d6efd;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #0056b3;
}
/* Modal background */
.modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.6);
}

/* Modal content box */
.modal-content {
  background: white;
  margin: 10% auto;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
}

/* Close button */
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #0d6efd;
}

/* Form styling */
.right h3 {
  text-align: center;
  color: #0d6efd;
  margin-bottom: 20px;
}

.right input[type="text"],
.right input[type="password"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.right .options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.right .options a {
  font-size: 13px;
  text-decoration: none;
  color: #0d6efd;
}

.right .options a:hover {
  text-decoration: underline;
}

.right button[type="submit"] {
  width: 100%;
  padding: 12px;
  background: #0d6efd;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.right button[type="submit"]:hover {
  background: #0056b3;
}

.right .register {
  margin-top: 15px;
  font-size: 13px;
  text-align: center;
}

.right .register a {
  color: #0d6efd;
  text-decoration: none;
}

.right .register a:hover {
  text-decoration: underline;
}
/* Modal overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px); /* subtle blur effect */
}

/* Modal content */
.modal-content {
  background: #fff;
  margin: 8% auto;
  padding: 30px 25px;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  position: relative;
  transition: all 0.3s ease-in-out;
  animation: slideDown 0.4s ease;
}

/* Slide down animation */
@keyframes slideDown {
  0% {transform: translateY(-50px); opacity:0;}
  100% {transform: translateY(0); opacity:1;}
}

/* Close button */
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.3s;
}


/* Form styling */
.right h3 {
  text-align: center;
  font-size: 28px;
  color: #0d6efd;
  margin-bottom: 20px;
}

.right input[type="text"],
.right input[type="password"] {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.right input:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 5px rgba(13, 110, 253, 0.5);
  outline: none;
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.options a {
  font-size: 13px;
  text-decoration: none;
  color: #0d6efd;
  transition: color 0.3s;
}

.options a:hover { color: #0056b3; }

.login-btn {
  width: 100%;
  padding: 12px;
  background: #0d6efd;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s;
}

.login-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13,110,253,0.4);
}

.register {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.register a {
  color: #0d6efd;
  text-decoration: none;
  font-weight: bold;
}

.register a:hover { text-decoration: underline; }
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
}

.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 30px 25px;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  position: relative;
  text-align: center;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  0% {transform: translateY(-50px); opacity:0;}
  100% {transform: translateY(0); opacity:1;}
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.3s;
}



input {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

input:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 5px rgba(13,110,253,0.5);
  outline: none;
}

.options {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 20px;
}

.options a {
  text-decoration: none;
  color: #0d6efd;
}

.options a:hover { text-decoration: underline; }

.login-btn {
  width: 100%;
  padding: 12px;
  background: #0d6efd;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.login-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13,110,253,0.4);
}

.register-btn {
  width: 100%;
  padding: 12px;
  background: #28a745;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.register-btn:hover {
  background: #1e7e34;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(40,167,69,0.4);
}
/* Modal Overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  transition: opacity 0.3s ease;
}

/* Modal Content */
.modal-content {
  background: #fff;
  margin: 8% auto;
  padding: 30px 25px;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  position: relative;
  text-align: center;
  animation: slideDown 0.4s ease;
}

/* Slide Down Animation */
@keyframes slideDown {
  0% { transform: translateY(-50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.3s;
}

/* Headings */
.modal-content h3 {
  font-size: 28px;
  color: #0d6efd;
  margin-bottom: 20px;
}

/* Input Fields */
.modal-content input {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.modal-content input:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 5px rgba(13,110,253,0.4);
  outline: none;
}

/* Options */
.options {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 20px;
}
.options a {
  text-decoration: none;
  color: #0d6efd;
  transition: color 0.3s;
}
.options a:hover { color: #0056b3; }

/* Buttons */
.login-btn,
.register-btn {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.login-btn {
  background: #0d6efd;
  color: white;
}
.login-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13,110,253,0.4);
}

.register-btn {
  background: #28a745;
  color: white;
}
.register-btn:hover {
  background: #1e7e34;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(40,167,69,0.4);
}

/* Register Link */
.register {
  margin-top: 15px;
  font-size: 14px;
}
.register a {
  color: #0d6efd;
  font-weight: bold;
  text-decoration: none;
}
.register a:hover {
  text-decoration: underline;
}
