* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.body::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Barlow", sans-serif;
  background-color: #ffffff;
  color: #333;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-x: hidden;
  -ms-overflow-style: none;
}

/* NAVBAR STYLES */
.nav-custom {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 12px 24px;
  font-family: "Barlow", sans-serif;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-item {
  margin-left: 16px;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link {
  color: #333;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  font-family: "Barlow", sans-serif;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover effect */
.nav-link:hover {
  background-color: #e0e6f0;
  color: #0d1b2a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

/* Active link styling */
.nav-link.active {
  background-color: #00506d; /* cyan highlight */
  color: #ffffff !important; /* dark text for contrast */
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(0, 255, 240, 0.25);
}

/* Navbar Brand */
.navbar-brand img {
  height: 80px;
  width: 270px;
  transition: transform 0.3s ease;
  margin-right: 10px;
  cursor: pointer;
}

.navbar-brand img:hover {
  transform: scale(1.1);
}

/* Market Ticker Styles */
.market-ticker-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
  padding: 5px 0;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 8px 12px;
  border-radius: 8px;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.ticker-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ticker-label {
  font-size: 0.6rem;
  opacity: 0.9;
}

.ticker-value {
  font-weight: 700;
  font-size: 0.8rem;
}

.ticker-change {
  font-size: 0.7rem;
  font-weight: 600;
}

.ticker-up {
  color: #00ff88 !important;
  text-shadow: 0 0 3px rgba(0, 255, 136, 0.3);
}

.ticker-down {
  color: #ff4c4c !important;
  text-shadow: 0 0 3px rgba(255, 76, 76, 0.3);
}

.loading {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}

.status-indicator.error {
  background: #ff4c4c;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0.3;
  }
}

/* Responsive */
@media (max-width: 821px) {
  .nav-item {
    margin-left: 5px;
    font-size: 16px;
  }
  .navbar-brand img {
    height: 30px;
  }
  .market-ticker-wrapper {
    flex-direction: column;
    gap: 8px;
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }
  .ticker-item {
    font-size: 0.75rem;
    padding: 6px 10px;
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 999px) and (min-width: 769px) {
  .market-ticker-wrapper {
    gap: 10px;
  }
  .ticker-item {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
  .navbar-brand img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
    justify-content: center;
    text-align: center;
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  .nav-custom {
    padding: 10px 15px;
  }
  .nav-item {
    margin-left: 8px;
    font-size: 14px;
  }
  .navbar-brand img {
    height: 35px;
    width: auto;
  }
}

/* Top Info Strip */
.top-strip {
  background-color: #0d1b2a; /* dark background */
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 20px;
  text-align: center;
}

.top-strip-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-strip .separator {
  color: #00fff0; /* cyan separator */
  font-weight: 700;
}

.top-strip .contact,
.top-strip .reg {
  display: inline-block;
  white-space: nowrap;
}

/* Responsive: stack on smaller screens */
@media (max-width: 821px) {
  .top-strip-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
  }
  .top-strip {
    font-size: 0.5rem;
    padding: 8px 12px;
  }
}

/* HERO SECTION STYLES */
.hero-custom {
  background: url("../assets/images/hero-bg.jpg") no-repeat center center;
  background-size: cover;
  color: #fff;
  height: 100vh;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  padding: 0 20px;
  box-sizing: border-box;
  font-family: "Barlow", sans-serif;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
  animation: fadeInUp 1s ease-out;
  text-align: center;
}

.custom-title {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.2;
}

.poonjee {
  color: #2d51ff;
}

.nivesh {
  color: #fb760b;
}

.custom-para {
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  margin: 16px 0 28px;
  font-weight: 400;
}

.cp {
  font-size: clamp(0.9rem, 2vw, 1.4rem);
  margin: 16px 0 32px;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
}

.angel-one-logo {
  height: clamp(28px, 5vw, 55px);
  vertical-align: middle;
  margin-left: 10px;
}

.custom-btn {
  background-color: #007bff;
  border: none;
  padding: clamp(10px, 2vw, 18px) clamp(20px, 4vw, 30px);
  font-size: clamp(0.9rem, 2vw, 1.4rem);
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-btn:hover {
  background-color: #0069d9;
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

/* Subtle entry animation */
@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Tablet View */
@media (max-width: 992px) {
  .hero-custom {
    height: 80vh;
  }
}

/* Mobile View */
@media (max-width: 576px) {
  .hero-custom {
    height: 70vh;
    padding: 0 10px;
  }

  .hero-content {
    max-width: 100%;
  }

  .custom-title {
    margin-bottom: 10px;
  }

  .custom-btn {
    width: 80%;
    padding: 10px 0;
    font-size: 1rem;
  }

  .custom-para,
  .cp {
    margin: 10px 0 20px;
  }
}


/* ABOUT US STYLES */
.custom-about-us {
  background-color: #f0ffff; /* Light background for contrast */
  padding: 60px 20px;
  box-sizing: border-box;
  font-family: "Barlow", sans-serif; /* Modern font */
}

.about-us-title {
  color: #333;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center; /* Ensures centered heading */
}

.about-us-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left; /* Better for long paragraphs */
}

.about-us-text {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
  text-align: justify; /* Cleaner blocky look */
}

.about-us-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .custom-about-us {
    padding: 40px 10px;
  }

  .about-us-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .about-us-text {
    font-size: 16px;
  }
}

/* MESSAGES SECTION STYLES */
.messages-section {
  background-color: #fff5ee;
  padding: 60px 20px;
  font-family: "Barlow", sans-serif;
}

.messages-title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.messages-subtitle {
  font-size: 18px;
  color: #777;
  margin-bottom: 40px;
}

.message-card {
  background: #f8f9fa;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.message-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.message-header {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
}

.message-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.message-name {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  color: #222;
}

.message-role {
  margin: 0;
  font-size: 14px;
  color: #888;
}

.message-text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-top: 15px;
  text-align: justify;
}

.custom-viewmore {
  font-size: 16px;
  font-weight: 500;
  color: #007bff;
  text-decoration: none;
  padding-top: 10px;
  display: inline-block;
}

.custom-viewmore:hover {
  text-decoration: underline;
  color: #0056b3;
}

/* SERVICES SECTION STYLES */
.services {
  padding: 60px 20px;
  background: #e0e0e0;
  text-align: center;
}

.services .section-title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.services .section-subtitle {
  color: #555;
  margin-bottom: 40px;
  font-size: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Unified service card */
.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

  /* Initial hidden state for scroll animation */
  opacity: 0;
  transform: translateY(30px);

  /* Transition for both scroll + hover */
  transition: transform 0.4s ease, opacity 0.6s ease, box-shadow 0.4s ease,
    background 0.4s ease;
}

.service-card .icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.3rem;
  color: #0d1b2a;
  margin-bottom: 10px;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
}

/* When visible */
.service-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Hover effect (must be more specific so it overrides .show) */
.service-card.show:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, #ffffff, #f0f7ff);
}

/* NEWS SECTION */
.news-section {
  background: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.news-section .section-title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.news-section .section-subtitle {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.news-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
  height: 160px;
  object-fit: cover;
}

.news-card h3 {
  font-size: 1.1rem;
  color: #0d1b2a;
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
}

.news-card a {
  font-weight: bold;
  color: #0d1b2a;
  text-decoration: none;
}

.news-card a:hover {
  color: #0077b6;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Fade-in + slide-up effect */
.news-card {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.news-card.show {
  opacity: 1;
  transform: translateY(0);
}

.news-meta {
  margin-bottom: 10px;
  border-top: 1px solid #eee;
  padding-top: 10px;
  margin-top: 10px;
}

/* FAQs SECTION STYLE */
.faq-section {
  background: #e0e0e0;
}

.faq-section h2 {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 18px 22px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.faq-toggle {
  font-size: 1.4rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg); /* plus → cross */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  margin-top: 12px;
}

/* WHY CHOOSE SECTION STYLE */
.why-poonjee-dark {
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
  color: #f4f4f4;
}

.why-poonjee-dark h2 {
  font-size: 2.5rem;
  color: #ffc857; /* Gold Accent */
}

.why-poonjee-dark .section-subtitle {
  color: #aaa;
  font-size: 1.1rem;
}

.why-poonjee-dark .feature-box {
  background: #1e2a3a;
  border-radius: 12px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.why-poonjee-dark .feature-box i {
  font-size: 2.5rem;
  color: #00fff0; /* Electric Cyan Accent */
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.why-poonjee-dark .feature-box h5 {
  color: #fdfdfd;
  margin-bottom: 10px;
}

.why-poonjee-dark .feature-box p {
  color: #ccc;
  font-size: 0.95rem;
}

.why-poonjee-dark .feature-box:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  background: #243447;
}

.why-poonjee-dark .feature-box:hover i {
  color: #ffc857; /* Gold on hover */
}

/* Contact Section */
#contact {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #f0f4f8, #e6edf5);
  font-family: "Barlow", sans-serif;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.contact-info h2 {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.contact-info p {
  margin-bottom: 2rem;
  color: #334155;
  line-height: 1.6;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #1e293b;
}

.info-item i {
  margin-right: 0.75rem;
  color: #0ea5e9;
  font-size: 1.2rem;
}

/* CONTACT FORM STYLE */
#contact {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #d7e7f8, #e6edf5);
  font-family: "Barlow", sans-serif;
}

/* Header */
.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.contact-header p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Layout */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

/* Info Side */
.contact-info .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #ffffffd9;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info .info-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-info i {
  font-size: 1.6rem;
  color: #0ea5e9;
  margin-right: 1rem;
}

.contact-info h4 {
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 0.2rem;
}

.contact-info p {
  margin: 0;
  color: #475569;
}

/* Form Side */
.contact-form form {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.form-group {
  position: relative;
  margin-bottom: 1.8rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.75rem;
  outline: none;
  font-size: 1rem;
  background: transparent;
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.2);
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.95rem;
  color: #64748b;
  pointer-events: none;
  transition: 0.2s ease;
  background: #fff;
  padding: 0 0.4rem;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: -0.6rem;
  left: 0.8rem;
  font-size: 0.75rem;
  color: #0ea5e9;
}

/* Button */
button {
  width: 100%;
  background: #0ea5e9;
  border: none;
  color: #fff;
  padding: 0.9rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
  background: #0284c7;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.info-intro {
  margin-bottom: 2rem;
}

.info-intro h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.info-intro p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
}

/* Rotating Text */
.rotating-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0ea5e9;
  margin-bottom: 1.5rem;
  height: 1.6rem;
  overflow: hidden;
  position: relative;
}

.rotating-text span {
  position: absolute;
  width: 100%;
  text-align: left;
  animation: rotateWords 9s linear infinite;
  opacity: 0;
}

.rotating-text span:nth-child(1) {
  animation-delay: 0s;
}
.rotating-text span:nth-child(2) {
  animation-delay: 3s;
}
.rotating-text span:nth-child(3) {
  animation-delay: 6s;
}

@keyframes rotateWords {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  40% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 0;
  }
}

/* MARKET INSIGHT SECTION */
.market-insights-section {
  padding: 50px;
  background: #f9f9f9;
  text-align: center;
}

.market-insights-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

/* Container holding NIFTY and SENSEX groups */
.market-insights-container {
  display: flex;
  flex-direction: column;
  gap: 40px; /* space between NIFTY and SENSEX groups */
  align-items: center;
}

/* Each index group (NIFTY or SENSEX) */
.market-index-group {
  display: flex;
  justify-content: center;
  gap: 20px; /* space between cards inside group */
  flex-wrap: wrap;
}

/* Individual cards */
.market-insights-section .card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 300px;
}

.market-insights-section .card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #333;
}

.market-insights-section table {
  width: 100%;
  border-collapse: collapse;
}

.market-insights-section table th,
.market-insights-section table td {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.market-insights-section .green {
  color: green;
  font-weight: bold;
}

.market-insights-section .red {
  color: red;
  font-weight: bold;
}

/* Responsive for small screens */
@media (max-width: 650px) {
  .market-index-group {
    flex-direction: column;
    align-items: center;
  }
}

/* TESTIMONIAL SECTION STYLE */
.testimonials {
  background: linear-gradient(135deg, #f9fafc, #e8f5ff);
  padding: 5rem 2rem;
  text-align: center;
}

.testimonials .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #222;
  display: inline-block;
  font-family: "Barlow", sans-serif;
  position: relative;
}

.testimonials .section-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 2rem;
  display: block;
  font-family: "Barlow", sans-serif;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Slider Container */
.testimonial-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  min-height: 280px; /* fallback */
  transition: height 0.5s ease; /* smooth height adjustment */
}

/* Card Styles */
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 3rem 2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 1;
}

.testimonial-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #00fff0;
}

.testimonial-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0.5rem 0;
}

.testimonial-card .role {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
}

.testimonial-card .stars {
  font-size: 1.2rem;
  color: #ffc107;
  margin-bottom: 1rem;
}

.testimonial-card .feedback {
  font-size: 1rem;
  font-style: italic;
  color: #333;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 576px) {
  .testimonials .section-title {
    font-size: 2rem;
  }
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
}

/* FOOTER SECTION STYLE */
.site-footer {
  background: #0d1b2a;
  color: #f4f4f4;
  padding: 60px 20px 30px 20px;
  font-family: "Barlow", sans-serif;
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap; /* keep horizontal until small screens */
  max-width: 1200px;
  margin: auto;
  gap: 50px;
}

.footer-section {
  flex: 1;
  min-width: 220px;
  position: relative;
  transition: transform 0.3s ease;
}

.footer-section:hover {
  transform: translateY(-5px); /* subtle lift on hover */
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #00fff0;
  position: relative;
}

.footer-section h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, #00fff0, #ffc857);
  margin-top: 4px;
  border-radius: 2px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #f4f4f4;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background: #00fff0;
  transition: width 0.3s ease;
}

.footer-links ul li a:hover::after {
  width: 100%;
}

/* Newsletter Form Styles */
#newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

#newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
}

#newsletter-form button {
  padding: 12px 20px;
  background: #00fff0;
  color: #0d1b2a;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#newsletter-form button:hover {
  background: #ffc857;
  transform: translateY(-2px);
}

#newsletter-form button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.newsletter-message {
  padding: 10px 15px;
  border-radius: 4px;
  margin-top: 10px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter-message:not(.error) {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.newsletter-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  color: #f4f4f4;
  margin-right: 15px;
  font-size: 18px;
  display: inline-block;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #00fff0;
  transform: translateY(-2px);
}

/* GOOGLE MAPS STYLE */
#office-map {
  margin: 20px auto;
  width: 350px; /* square shape */
  height: auto; /* square shape */
  text-align: center;
}

#office-map img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

#office-map img:hover {
  transform: scale(1.05);
}

#office-map .office-address {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #f4f4f4;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 15px;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-section {
    transform: none;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  transition: transform 0.28s ease, opacity 0.28s ease;
  pointer-events: auto;
}

.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(60px);
  pointer-events: none;
}

.cookie-inner {
  width: 100%;
  max-width: 980px;
  background: rgba(13, 27, 42, 0.98);
  color: #fff;
  padding: 18px;
  border-radius: 12px;
  display: flex;
  gap: 18px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.cookie-text {
  flex: 1;
}
.cookie-text p {
  margin: 6px 0;
  color: rgba(255, 255, 255, 0.87);
}
.cookie-text .small {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Buttons: tweak to match your theme */
.btn {
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: #00a888;
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 640px) {
  .cookie-inner {
    flex-direction: column;
    text-align: left;
    align-items: stretch;
  }
  .cookie-actions {
    justify-content: flex-end;
  }
}


/*Whatsapp Button Style*/
.whatsapp-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}


@media (max-width: 768px) {
  .whatsapp-float {
    width: 60px;
    height: 60px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float img {
    width: 32px;
    height: 32px;
  }
}
