/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #e9f2ff;
    color: #333;
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  header {
    background-color: #003366;
    color: white;
    padding: 20px 0;
  }
  
  .header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .logo-section {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .logo {
    font-size: 1.7rem;
  }
  
  .logo-text {
    font-size: 1.1rem;
    margin-left: 10px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  nav ul li a:hover {
    color: #ffcc00;
  }
  
  .hero {
    background: linear-gradient(to right, #00509e, #003366);
    color: white;
    text-align: center;
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  
  .btn {
    background-color: #ffcc00;
    color: #003366;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    display: inline-block;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background-color: #e6b800;
  }
  
  .services-preview {
    background-color: white;
    padding: 50px 20px;
    text-align: center;
  }
  
  .services-preview h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .card {
    background: #f4f9ff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  
  .card h3 {
    margin-bottom: 10px;
    color: #003366;
  }
  
  #about, #contact {
    padding: 60px 20px;
    background: #fdfdfd;
  }
  
  #about h2, #contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #003366;
  }
  
  footer {
    background-color: #003366;
    color: white;
    padding: 20px 0;
    text-align: center;
  }
  
  /* ========== Gallery (Inline) ========== */
  .gallery-section {
    padding: 50px 20px;
    background-color: #ffffff;
    text-align: center;
  }
  
  .gallery-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #003366;
  }
  
  .gallery-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
  }
  
  .gallery-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    max-width: 600px;
    padding: 10px;
  }
  
  .gallery-carousel img {
    width: 280px;
    height: auto;
    margin: 0 10px;
    border-radius: 10px;
    flex-shrink: 0;
  }
  
  .gallery-btn {
    font-size: 1.5rem;
    background-color: #003366;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s;
  }
  
  .gallery-btn:hover {
    background-color: #00509e;
  }
  header {
    background: #003366; /* Solid blue */
    color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3); /* optional */
  }
  
  .header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
  }
  
  .logo-section {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    font-weight: bold;
  }
  .logo-section .logo-text {
    font-size: 16px;
    font-weight: normal;
  }
  nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
  }
  nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
  }
  .gallery-section {
    margin: 60px auto;
    padding: 20px;
    text-align: center;
  }
  
  .gallery-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
  }
  
  .gallery-track img {
    width: calc(50% - 10px);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .gallery-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: #222;
    color: white;
    border: none;
    font-size: 1.5rem;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 1;
    border-radius: 5px;
  }
  
  .gallery-btn.left {
    left: -40px;
  }
  
  .gallery-btn.right {
    right: -40px;
  }
  .gallery-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: #222;
    color: white;
    border: none;
    font-size: 2.5rem;  /* increased from 1.5rem */
    padding: 12px 18px; /* increased padding */
    cursor: pointer;
    z-index: 1;
    border-radius: 8px;
    opacity: 0.8;
    transition: all 0.3s ease;
  }
  
  .gallery-btn:hover {
    opacity: 1;
    background-color: #444;
  }
  
  .gallery-btn.left {
    left: -50px; /* or adjust to -40px if needed */
  }
  
  .gallery-btn.right {
    right: -50px; /* or adjust to -40px if needed */
  }
  .gallery-section {
    margin: 40px auto; /* reduced from 60px to shift upward */
    padding: 20px;
    text-align: center;
  }
  
  .gallery-section h2 {
    font-size: 2.2rem; /* increase from default (usually ~1.5rem) */
    margin-bottom: 25px;
  }
  .card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
  }
  
  .card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
/* General transition effect for smoother animations */
* {
    transition: all 0.3s ease-in-out;
  }
  
  /* Navigation links hover */
  nav ul li a:hover {
    color: #ffc107; /* yellowish highlight */
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
  }
  
  /* Button (e.g. View Services) */
  .btn {
    background: #ffc107;
    color: black;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease-in-out;
  }
  
  .btn:hover {
    transform: scale(1.1);
    background: #ffb300;
    box-shadow: 0 6px 14px rgba(0,0,0,0.3);
  }
  
  /* Service cards */
  .card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }
  
  .card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  
  /* Header nav and logo hover */
  .logo:hover,
  .logo-text:hover {
    transform: scale(1.05);
    color: #ffc107;
  }
  
  nav ul li:hover {
    transform: scale(1.05);
  }
  
  /* Gallery images hover */
  .gallery-image {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .gallery-image:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  }
/* Hero Section Background Styling */
.hero {
    background: linear-gradient(135deg, #004aad, #0096c7); /* custom modern gradient */
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
    border-bottom: 8px solid #ffc107; /* thick highlight border */
    border-radius: 0 0 50px 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }
  
  /* Hero text styles */
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  }
  
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  /* Call to Action Button (View Services) */
  .btn {
    background-color: #ffc107;
    color: black;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: 0.3s ease-in-out;
  }
  
  .btn:hover {
    background-color: #ffb300;
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  }
  /* Hide hamburger by default */
.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
  padding-right: 20px;
}

/* Navbar for desktop */
#navbar ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  #navbar ul {
    display: none;
    flex-direction: column;
    background-color: #002b5b;
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    text-align: center;
    z-index: 999;
  }

  #navbar ul.active {
    display: flex;
  }

  #navbar ul li {
    padding: 15px 0;
    border-top: 1px solid #ffffff33;
  }
}
.hamburger {
  font-size: 30px;
  cursor: pointer;
  color: white;
  padding: 10px 20px;
  z-index: 1001;
  position: relative;
}

/* Ensure menu doesn't cover hamburger */
@media (max-width: 768px) {
  header {
    position: relative;
  }
}
/* Basic Header Layout */
header {
  background-color: #002f5f;
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Nav Links */
#navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

#navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Responsive Menu for Mobile */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  #navbar ul {
    display: none;
    flex-direction: column;
    background-color: #002f5f;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }

  #navbar ul.active {
    display: flex;
  }

  #navbar ul li {
    padding: 10px;
    text-align: right;
  }
}
#site-header {
  transition: top 0.3s;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

/* When hidden */
.hide-header {
  top: -100px; /* or adjust based on your header height */
}
/* Floating Header */
#site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #002f5f;
  color: white;
  padding: 15px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 999;
  transition: transform 0.3s ease;
}

/* Hidden State */
#site-header.hide {
  transform: translateY(-100%);
}
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #002f5f;
  color: white;
  z-index: 1000;
  transition: top 0.3s ease-in-out;
  padding: 15px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

#site-header.hide {
  top: -100px;
}

#site-header {
  position: fixed;
  top: 10px;
  left: 10px;
  right: 10px;
  background: rgba(0, 47, 95, 0.95);
  color: white;
  z-index: 1000;
  transition: top 0.3s ease-in-out;
  padding: 15px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);

  /* Border settings */
  border: 2px solid #ffffff90;
  border-radius: 10px;

  /* Prevent full-width squeeze */
  width: auto;
}
.hero, #services {
  margin-top: 0;
  padding-top: 0;
}
.hero {
  padding-top: 120px;  /* Header height + some gap */
}
section {
  scroll-margin-top: 120px; /* Header height */
}
/* Default desktop view */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.logo-section {
  display: flex;
  flex-direction: column;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .logo-section {
    display: none; /* ✅ Hide logo in mobile */
  }

  #navbar ul {
    display: none;
    flex-direction: column;
    background-color: #003366;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    border: 1px solid white;
    border-radius: 8px;
    padding: 10px;
    z-index: 999;
  }

  #navbar ul.show {
    display: flex;
  }

  #navbar ul li {
    margin: 10px 0;
    text-align: right;
  }
}
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  font-weight: bold;
}

.copy-btn {
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: 0.3s ease-in-out;
}

.copy-btn:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}

.copy-message {
  margin-left: 10px;
  font-size: 0.9rem;
  color: green;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.map-container {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}




.gallery-section {
  padding: 40px 20px;
  text-align: center;
}
.gallery-wrapper {
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}
.gallery-track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 20px;
  scroll-behavior: smooth;
}
.gallery-track a {
  flex: 0 0 calc(50% - 10px);
  display: block;
}
.gallery-track img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #222;
  color: white;
  font-size: 2rem;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 10;
}
.gallery-btn.left {
  left: 10px;
}
.gallery-btn.right {
  right: 10px;
}

/* Mobile: show only 1 image */
@media (max-width: 768px) {
  .gallery-track a {
    flex: 0 0 100%;
  }
  .gallery-btn {
    font-size: 1.5rem;
    padding: 6px 10px;
  }
}



.gallery-section {
  padding: 40px 20px;
  text-align: center;
}

.gallery-wrapper {
  position: relative;
  max-width: 90%;
  margin: auto;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px 0;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track a {
  flex: 0 0 50%; /* show 2 images at once */
  display: block;
}

.gallery-track img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #003366;
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  opacity: 0.7;
}

.gallery-btn:hover {
  opacity: 1;
}

.gallery-btn.left {
  left: 0;
}

.gallery-btn.right {
  right: 0;
}

@media (max-width: 768px) {
  .gallery-track a {
    flex: 0 0 100%; /* one image per view on mobile */
  }

  .gallery-btn {
    font-size: 1.5rem;
    padding: 8px;
  }
}


html, body {
  overflow-x: hidden;
}

.glightbox-clean .gslide-description {
  max-width: 90vw;
}
html, body {
  overflow-x: hidden;
}

.glightbox-clean .gslide-description {
  max-width: 90vw;
}
#navbar ul.active {
  display: flex;
}
#scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 999;
  font-size: 1.5rem;
  background-color: #003366;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

#scrollToTop.show {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1.1);
}

#scrollToTop:hover {
  background-color: #00509e;
  transform: scale(1.2);
}
#scrollToTop {
  position: fixed;
  bottom: 90px; /* keeps space above WhatsApp button */
  left: 20px;    /* shifted to left side */
  z-index: 999;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollToTop img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

#scrollToTop.show {
  opacity: 1;
  pointer-events: auto;
}

#scrollToTop:hover img {
  transform: scale(1.1);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #scrollToTop {
    bottom: 80px;
    left: 10px;
  }

  #scrollToTop img {
    width: 32px;
    height: 32px;
  }
}
#scrollToTop {
  position: fixed;
  bottom: 90px;           /* space above WhatsApp */
  right: 20px;            /* placed to the right */
  z-index: 999;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollToTop img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

#scrollToTop.show {
  opacity: 1;
  pointer-events: auto;
}

#scrollToTop:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  #scrollToTop {
    right: 16px;
    bottom: 85px;
  }

  #scrollToTop img {
    width: 30px;
    height: 30px;
  }
}
#scrollToTop {
  all: unset; /* ✅ This resets all default button styles */
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollToTop.show {
  opacity: 1;
  pointer-events: auto;
}

#scrollToTop img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

#scrollToTop:hover img {
  transform: scale(1.1);
}

/* Mobile tweaks */
@media (max-width: 768px) {
  #scrollToTop {
    right: 16px;
    bottom: 85px;
  }

  #scrollToTop img {
    width: 30px;
    height: 30px;
  }
}
#scrollToTop img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  border: none;          /* extra safe */
  outline: none;         /* ✅ removes blue/gray box */
}
#scrollToTop {
  all: unset;
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  background-color: #075e54; /* dark green like cvbokaro */
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

#scrollToTop img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1); /* makes icon white */
  pointer-events: none;
}

#scrollToTop.show {
  opacity: 1;
  pointer-events: auto;
}

#scrollToTop:hover {
  transform: scale(1.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
  #scrollToTop {
    bottom: 80px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  #scrollToTop img {
    width: 18px;
    height: 18px;
  }
}
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 10px;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700; /* increased font weight */
  font-size: 15px;  /* slightly larger text */
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 998;
}

.whatsapp-button img {
  width: 40px;
  height: 40px;}
#scrollToTop {
  bottom: 95px; /* 🔼 increased from 90px to 110px */
}
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #003366;
  color: white;
  border: none;
  font-size: 1.8rem;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.gallery-btn:hover {
  opacity: 1;
  background-color: #00509e;
}
.gallery-btn.left {
  left: 5px;
}

.gallery-btn.right {
  right: 5px;
}
@media (max-width: 768px) {
  .gallery-btn {
    font-size: 1.4rem;
    padding: 6px 10px;
  }
}
.gallery-wrapper {
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}
.gallery-btn {
  position: absolute;
  top: 50%;                        /* center vertically */
  transform: translateY(-50%);
  background: #003366;
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.gallery-btn:hover {
  opacity: 1;
  background-color: #00509e;
}

.gallery-btn.left {
  left: 10px;
}

.gallery-btn.right {
  right: 10px;
}
.hero {
    background: url('xyz.jpg') center/cover no-repeat; /* Relative URL */
    padding: 180px 20px 100px;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 2.5rem; /* Blue wale jaise size */
    font-weight: 700; /* Bold text */
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.hero p {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero .btn {
    display: inline-block;
    background-color: #ffcc00;
    color: #000;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.hero .btn:hover {
    background-color: #e6b800;
}







.horizontal-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.horizontal-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.card-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 10px;
}

.card-text {
  flex: 1;
}

.card-text h3 {
  color: #003366;
  margin-bottom: 5px;
}

.card-text p {
  font-size: 0.95rem;
}



/* Star Rating Styles */
.star-rating {
  font-size: 2.8rem;
  color: #ccc;
  cursor: pointer;
  display: inline-flex;
  gap: 5px;
  user-select: none;
}

.star-rating span {
  transition: transform 0.2s ease, color 0.2s ease;
}

.star-rating span.hover,
.star-rating span.active {
  background: linear-gradient(45deg, #ffcc00, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(1.2);
}

.star-rating span.active {
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.8);
}
