:root {
  --primary-orange: #f37021;
  --secondary-black: #1a1a1a;
  --accent-white: #ffffff;
  --gradient-orange: linear-gradient(135deg, #f37021, #ff8c42);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", "Noto Serif Tamil", sans-serif;
  line-height: 1.8;
  color: var(--secondary-black);
  background: #f5f5f5;
}

/* When Google Translate switches to Tamil */
html[lang="ta"] body,
.goog-te-body .VIpgJd-ZVi9od-l4eHX-hSRGPd {
  font-family: "Noto Serif Tamil", serif !important;
}

/* Google Translate */
.goog-logo-link {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
  font-size: 0 !important;
}

/* --- Floating Container Style --- */
.floating-translator-container {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 1050;
  /* High z-index to stay on top */
  transform: translateY(-50%);
  background-color: #ffffff;
  padding: 5px;
  border: 1px solid #dbdbdb;
  border-right: none;
  border-radius: 8px 0 0 8px;
  box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.15);
}

/* Navbar Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

.navbar-brand {
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--primary-orange) !important;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-white);
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-icon {
  transform: rotate(360deg);
}

.navbar-nav .nav-link {
  color: var(--secondary-black) !important;
  font-weight: 500;
  margin: 0 15px;
  padding: 8px 15px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-orange) !important;
  transform: translateY(-2px);
}

.logo-say {
  max-width: 335px;
}

/* Hero Section */
.hero {
  background-image: url(./img/banner-img.png);
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* Black with 50% opacity */
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1.5" fill="white" opacity="0.15"/><circle cx="75" cy="75" r="1.5" fill="white" opacity="0.15"/><circle cx="50" cy="10" r="0.8" fill="white" opacity="0.15"/><circle cx="10" cy="60" r="0.8" fill="white" opacity="0.15"/><circle cx="90" cy="40" r="0.8" fill="white" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.hero-content {
  position: relative;
  /* display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center; */
  z-index: 2;
  /* max-width: 800px; */
}

.hero h1 {
  font-size: 4rem;
  color: var(--accent-white);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero .subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 300;
  color: var(--accent-white);
}

.cta-btn {
  background: var(--accent-white);
  color: var(--primary-orange);
  padding: 15px 50px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  background: var(--primary-orange);
  color: var(--accent-white);
}

/* Section Styles */
.section {
  padding: 30px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--secondary-black);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: var(--gradient-orange);
  border-radius: 3px;
}

/* About Section */
.about {
  background: #fafafa;
}

.about-image {
  border-radius: 20px !important;
  overflow: hidden !important ;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
  transition: transform 0.3s ease !important;
  /* max-width: 100%;
  height: 350px; */
}

.about-image:hover {
  transform: scale(1.03);
}

.about-image video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important; /* Keeps aspect ratio while filling the container */
  display: block !important;
}

/* Services Section */
.service-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  background: var(--accent-white);
  height: 100%;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card .card-header {
  position: relative;
  padding: 0;
  border: none;
  text-align: center;
  background: transparent;
}

.service-card .card-header img {
  width: 100%;
  height: 280px !important;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
  transition: all 0.3s ease;
}

.service-card:hover .card-header img {
  filter: brightness(1.1);
}

.service-card .card-header h3 {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 15px 20px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-white);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8));
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card .card-body {
  padding: 25px;
  text-align: center;
  background: var(--accent-white);
}

.service-card .card-body p {
  font-size: 0.95rem;
  color: var(--secondary-black);
  opacity: 0.85;
  line-height: 1.6;
}

/* Gallery Section */
.gallery {
  background: #fafafa;
}

.gallery-slider {
  position: relative;
  padding: 20px 0;
}

.img-slider {
  padding: 10px 10px;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0 10px;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
  background: var(--gradient-orange);
  color: var(--accent-white);
}

/* .slick-prev i,
.slick-next i {
    font-size: 1.2rem;
    color: var(--primary-orange);
}

.slick-prev:hover i,
.slick-next:hover i {
    color: var(--accent-white);
} */

.slick-prev {
  left: -50px;
}

.slick-next {
  right: -50px;
}

.slick-dots {
  text-align: center;
  margin-top: 20px;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
  text-indent: -9999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slick-dots li.slick-active button {
  background: var(--primary-orange);
  transform: scale(1.3);
}

/* Why Choose Us */
.feature-box {
  text-align: center;
  padding: 35px 25px;
  border-radius: 20px;
  background: var(--accent-white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--accent-white);
  font-size: 2.2rem;
}

/* Contact Section */
.contact {
  background: #f5f5f5;
  color: var(--secondary-black);
}

.contact .section-title {
  color: var(--secondary-black);
}

.contact-info {
  background: #e9e9e9;
  padding: 35px;
  border-radius: 20px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.contact-item i {
  width: 60px;
  height: 60px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 1.5rem;
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 35px;
}

.social-links a {
  width: 60px;
  height: 60px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-links a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(243, 112, 33, 0.5);
}

.contact-form {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-form .form-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--secondary-black);
  margin-bottom: 20px;
  text-align: center;
}

.contact-form .form-label {
  color: var(--secondary-black);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--secondary-black);
  border-color: var(--secondary-black);
  border-radius: 8px;
  padding: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-orange);
  box-shadow: 0 0 8px rgba(243, 112, 33, 0.3);
  outline: none;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form .btn-primary {
  background: var(--gradient-orange);
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  width: 100%;
  transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(243, 112, 33, 0.4);
}

/* Footer Styles */
.footer {
  background: var(--secondary-black);
  color: var(--accent-white);
  padding: 60px 0 30px;
  position: relative;
  border-top: 2px solid rgba(243, 112, 33, 0.2);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-white);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.footer-logo:hover .logo-icon {
  transform: rotate(360deg);
}

.footer-logo h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary-orange);
}

.footer-brand p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-white);
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-orange);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--accent-white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-orange);
  padding-left: 8px;
}

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer-contact .contact-item i {
  width: 40px;
  height: 40px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.footer-contact .contact-item p {
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.9;
}

.footer .social-links {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  margin-top: 25px;
}

.footer .social-links a {
  width: 45px;
  height: 45px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.footer .social-links a:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(243, 112, 33, 0.4);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero .subtitle {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 2.3rem;
  }

  /* .about-image svg {
    height: 300px;
  } */

  .gallery-item img {
    height: 250px;
  }

  .contact-form {
    padding: 25px;
  }

  .contact-form .form-title {
    font-size: 1.4rem;
  }

  .footer {
    padding: 50px 0 20px;
  }

  .footer-logo h3 {
    font-size: 1.4rem;
  }

  .footer-logo .logo-icon {
    width: 45px;
    height: 45px;
  }

  .footer-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.75rem 0;
  }

  .navbar-brand {
    font-size: 1.4rem;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .hero-image {
    max-height: 350px;
    border-radius: 15px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-card .card-header img {
    height: 260px !important;
  }

  .service-card .card-header h3 {
    font-size: 1.2rem;
    padding: 10px 12px;
  }

  .service-card .card-body {
    padding: 20px;
  }

  .service-card .card-body p {
    font-size: 0.9rem;
  }

  .feature-box {
    padding: 25px 15px;
  }

  .contact-info {
    padding: 25px;
  }

  .contact-item i {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .social-links a {
    width: 50px;
    height: 50px;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-form .form-title {
    font-size: 1.3rem;
  }

  .contact-form .form-control {
    padding: 10px;
    font-size: 0.9rem;
  }

  .contact-form .btn-primary {
    padding: 10px 25px;
  }

  .gallery-item img {
    height: 220px;
  }

  .slick-prev,
  .slick-next {
    width: 35px;
    height: 35px;
  }

  .slick-prev i,
  .slick-next i {
    font-size: 1rem;
  }

  .slick-prev {
    left: -35px;
  }

  .slick-next {
    right: -35px;
  }

  .footer {
    padding: 50px 0 20px;
  }

  .footer-logo h3 {
    font-size: 1.4rem;
  }

  .footer-logo .logo-icon {
    width: 45px;
    height: 45px;
  }

  .footer-title {
    font-size: 1.2rem;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    margin-bottom: 30px;
  }

  .footer .social-links {
    justify-content: center;
  }

  .footer-bottom {
    padding-top: 30px;
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .hero-image {
    max-height: 300px;
    border-radius: 10px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .service-card .card-header img {
    height: 240px !important;
  }

  .service-card .card-header h3 {
    font-size: 1.1rem;
    padding: 8px 10px;
  }

  .service-card .card-body {
    padding: 15px;
  }

  .service-card .card-body p {
    font-size: 0.85rem;
  }

  /* .about-image svg {
    height: 250px;
  } */

  .gallery-item img {
    height: 200px;
  }

  .contact-form .form-title {
    font-size: 1.2rem;
  }

  .contact-form .form-control {
    padding: 8px;
    font-size: 0.85rem;
  }

  .contact-form .btn-primary {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .slick-prev,
  .slick-next {
    width: 30px;
    height: 30px;
  }

  .slick-prev i,
  .slick-next i {
    font-size: 0.9rem;
  }

  .slick-prev {
    left: -30px;
  }

  .slick-next {
    right: -30px;
  }

  .footer-logo h3 {
    font-size: 1.3rem;
  }

  .footer-logo .logo-icon {
    width: 40px;
    height: 40px;
  }

  .footer-title {
    font-size: 1.1rem;
  }

  .footer-links a,
  .footer-contact .contact-item p {
    font-size: 0.9rem;
  }

  .footer .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 430px) {
  .logo-say {
    max-width: 300px;
  }
}

@media (max-width: 375px) {
  .logo-say {
    max-width: 250px;
  }
}

@media (max-width: 346px) {
  .logo-say {
    max-width: 220px;
  }
}

/* Contact Page Start */

.contact-wrap {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 40px 16px;
  background: radial-gradient(
      1200px 600px at 100% -20%,
      rgba(243, 112, 33, 0.15),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at -20% 120%,
      rgba(255, 140, 66, 0.12),
      transparent 60%
    ),
    #0f0f0f;
}

.contact-container {
  width: 100%;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

/* gradient border ring */
.contact-container::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 180deg, #ff8c42, #f37021, #ff8c42);
  filter: blur(16px);
  opacity: 0.25;
  z-index: 0;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  grid-template-columns: 1.1fr 1fr;
  /* left details / right form */
}

/* Section headings */
.contact-title {
  font-size: 28px;
  margin: 0 0 12px;
  color: var(--accent-white);
  letter-spacing: 0.3px;
}

.contact-sub {
  margin: 0 0 24px;
  color: #cfcfcf;
  font-size: 14px;
}

/* Left: Cards */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.contact-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    300px 120px at 0% 0%,
    rgba(243, 112, 33, 0.18),
    transparent 60%
  );
  pointer-events: none;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(243, 112, 33, 0.35);
  box-shadow: 0 12px 28px rgba(243, 112, 33, 0.12);
}

.card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.icon-pill {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  background: var(--gradient-orange);
  color: #111;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(243, 112, 33, 0.25);
}

.card-title {
  font-weight: 700;
  color: var(--accent-white);
  font-size: 18px;
}

.card-desc,
.card-link {
  color: #d9d9d9;
  font-size: 14px;
  margin: 2px 0;
  word-break: break-word;
}

.card-link a {
  color: #ffd6c0;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 214, 192, 0.6);
}

.card-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-soft {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  transition: 0.2s ease;
}

.btn-soft:hover {
  border-color: rgba(243, 112, 33, 0.6);
  background: rgba(243, 112, 33, 0.12);
}

/* Right: Form */
.form-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
}

.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  gap: 8px;
}

.label {
  color: #efefef;
  font-size: 13px;
}

.input,
.select,
.textarea {
  width: 100%;
  border-radius: 12px;
  padding: 12px 14px;
  background: #0b0b0b;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: #f37021;
  box-shadow: 0 0 0 4px rgba(243, 112, 33, 0.15);
}

.textarea {
  min-height: 110px;
  resize: vertical;
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gradient-orange);
  color: #111;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(243, 112, 33, 0.25);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
}

.note {
  font-size: 12px;
  color: #bdbdbd;
  margin-top: 6px;
}

/* Badges under title */
.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.badge {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Services Page Start */

/* Section Base */
.services-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 30px 10%;
  position: relative;
}

/* Alternate image right */
.services-section:nth-child(even) {
  direction: rtl;
}

.services-section:nth-child(even) .service-content {
  direction: ltr;
}

/* Section Backgrounds */
.bg-1 {
  background: #fff;
}

.bg-2 {
  background: #1c1a17;
}

.bg-3 {
  background: #fff;
}

/* Inner Card Box */
.card-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(243, 112, 33, 0.25);
}

/* Images */
.service-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(243, 112, 33, 0.15);
  transition: transform 0.6s ease;
}

.service-img img:hover {
  transform: scale(1.05);
}

/* Content */
.service-content h2 {
  font-size: 30px;
  margin-bottom: 16px;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
  color: #e6e6e6;
}

/* Button */
.service-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 12px;
  background: var(--gradient-orange);
  color: #111;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(243, 112, 33, 0.25);
  position: relative;
  overflow: hidden;
}

.service-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
}

.service-btn:hover::after {
  left: 200%;
}

.service-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(243, 112, 33, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
  .services-section {
    grid-template-columns: 1fr;
    padding: 50px 6%;
  }

  .services-section:nth-child(even) {
    direction: ltr;
  }
}

.breadcrumb-section {
  background: url("https://blog.irctctourism.com/wp-content/themes/tour/assets/images/tourism-blog-banner1.webp")
    center/cover no-repeat;
  padding: 130px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Full Overlay */
.breadcrumb-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* Dark transparent overlay */
  z-index: 1;
}

/* Content inside overlay */
.breadcrumb-section .container {
  position: relative;
  z-index: 2;
}

.breadcrumb-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 100px;
}

.breadcrumb-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 15px;
}

.breadcrumb-nav a {
  color: #ff9d5e;
  font-weight: 600;
  text-decoration: none;
}

.breadcrumb-nav .separator {
  color: #ddd;
}

.breadcrumb-nav .active {
  color: #fff;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .breadcrumb-title {
    font-size: 26px;
  }

  .breadcrumb-nav {
    font-size: 14px;
  }
}

.contact-item p a {
  text-decoration: none;
  color: #0b0b0b;
}

.contact-info .bi {
  padding: 1em;
}

.field {
  padding-top: 10px;
}
