:root {
  /* Color Palette */
  --primary-gradient: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  --secondary-gradient: linear-gradient(135deg, #ff0099, #ff6600);
  --background-light: #f4f6f9;
  --text-primary: #2c3e50;
  --text-secondary: #34495e;
  --white: #ffffff;
  --shadow-subtle: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 10px 20px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background-light);
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
  overflow-x: hidden;
}


/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: white;
  box-shadow: var(--shadow-subtle);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  height: 50px;
}

.navbar-logo {
  font-size: 1.5em;
  font-weight: 800;
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-decoration: none;
}

.navbar ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}

.navbar li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 15px;
  transition: color 0.3s ease;
}

.navbar li a:hover {
  color: #6a11cb;
}

.signup-btn {
  background: var(--secondary-gradient);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.signup-btn:hover {
  transform: translateY(-3px);
}

/* Hero Section */
.hero {
  background-image: url('/assets/images/homepage images/voice wave.gif');
  color: var(--white);
  text-align: center;
  padding: 80px 20px; /* Reduced padding */
  margin-top: 0;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
}


  .hero h2 {
    font-size: 3rem;
    max-width: 800px;
    margin: 0 auto 20px;
    color: white;
  }

  .hero .highlight {
    background: var(--secondary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
  }

  .hero p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: white;
  }

  .hero .btn-group button {
    background: var(--secondary-gradient);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .hero .btn-group button:hover {
    transform: translateY(-3px);
  }


  /* Services Section */
  .services-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 0%;
  }
  
  .card-container {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1000px;
    overflow: hidden;
    margin: 0 auto; /* This centers the container horizontally */
  }
.section {
  display: flex;
  align-items: center;
  padding: 30px;
  border-bottom: 1px solid #eee;
}
  .section:last-child {
    border-bottom: none;
  }
  
  .section.reverse {
    flex-direction: row-reverse;
  }
  
  .content {
    flex: 1;
    padding: 0 20px;
  }
  .image-container {
    flex: 1;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .section h2 {
    margin-bottom: 15px;
    color: #030303;
    font-size: 30px;
  }
  
  .section p {
    background: linear-gradient(135deg, #ff0099, #ff6600);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    line-height: 1.5;
    text-align: left;
    font-size: 17px;
}
  
.explore-btn {
  display: block; /* Change from inline-block to block */
  width: fit-content; /* Make the button only as wide as its content */
  margin: 0 auto; /* This centers the button horizontally */
  padding: 10px 20px;
  background: var(--primary-gradient);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
}
 
.explore-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-subtle);
}
  
@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section h2 {
    font-size: 24px;
  }

  .picture {
    width: 100%;
    max-width: 100%;
  }

}

@media (max-width: 480px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 10px 20px;
  }

  .navbar-logo {
    font-size: 1.2em;
    margin-bottom: 10px;
  }

  .signup-btn {
    padding: 8px 15px;
    font-size: 0.9em;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .section p {
    font-size: 15px;
  }

  .picture-content p {
    font-size: 14px;
  }

  .fav-btn {
    font-size: 0.9em;
    padding: 8px;
  }
}

/* Packages Section */
h2 {
  text-align: center;
  font-size: 2.5em;
  margin: 40px 0;
  color: #333;
}

.packages {
  text-align: center;
  overflow: hidden;
  width: 100%;
}
/* Carousel Wrapper */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 20px;
  overflow: hidden;
  background-color: #f9f9f9;
}

#prev-btn,
#next-btn {
  margin: 10px;
  background: linear-gradient(135deg, #ff0099, #ff6600);
  color: white;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 1;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

/* Position buttons inside the carousel */
#prev-btn {
  left: 10px; 
}

#next-btn {
  right: 10px; 
}

/* Picture Container */
.picture-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow: hidden;
  transition: all 0.5s ease;
  justify-content: center;
  align-items: stretch;
}

/* Each Picture Card */
.picture {
  flex: 0 0 calc(25% - 20px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* Content Inside Picture */
.picture-content {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.picture-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #333;
}

.picture-content p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
  flex-grow: 1;
}
.picture {
  flex: 3 0 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 16px;
  text-align: center;
}

.picture img {
  width: 100%;
  height: 180px;
  border-radius: 8px;
}

.fav-btn {
  margin-top: 12px;
  padding: 10px 16px;
  background: linear-gradient(to right, #ff006a, #ff7300);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.picture:hover {
  transform: translateY(-5px);
}


.picture-content {
  padding: 15px;
  text-align: left;
}

.picture-content h3 {
  font-size: 20px;
  color: #0a0a0a;
  text-align: center;
  margin: 0;
}

.picture-content p {
  margin: 10px 0;
  color: #555;
  line-height: 1.4;
  word-wrap: break-word;
}

.fav-btn {
  background: linear-gradient(90deg, #ff0099, #ff6600);
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  width: 100%;
  font-size: 1em;
  margin-top: 10px;
}

.fav-btn:hover {
  background: linear-gradient(90deg, #ff0066, #ff3300);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .picture {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .picture {
    flex: 0 0 100%;
  }

  #prev-btn,
  #next-btn {
    font-size: 2rem;
  }
}


.chat-buttoncontainer {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.chat-button {
  width: 40px;
  height: 40px;
  background: url('/assets/images/chart_logo.jpg') no-repeat center center;
  background-size: cover;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}

.chat-tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 80px;
  right: 0;
  background: white;
  padding: 5px 10px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: sans-serif;
}

.chat-buttoncontainer:hover .chat-tooltip {
  visibility: visible;
  opacity: 1;
}

.chat-button-wrapper {
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

#chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  height: 500px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: white;
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
}

/* This ensures iframe content does not overflow */
#chatbot-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Fix for iframe content pushing top part */
iframe {
  display: block;
  overflow: auto;
}
/* Resize handle at top left */
.resize-handle {
  width: 20px;
  height: 20px;
  background-color: #f0f0f0;
  cursor: nwse-resize;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1001;
  border-bottom-right-radius: 5px;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  z-index: 1001;
}
/* Main Paragraph */
p {
  text-align: center;
  color: black; /* Set black color for main paragraph */
}

/* Footer */
footer {
  text-align: center;
  padding: 10px;
  background-color: black;
  color: white; /* White text in the footer */
  margin-top: 40px;
}

footer p {
  margin: 0;
  color: white; /* Footer paragraph stays white */
}


