@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-gradient: linear-gradient(135deg, #d46a18 0%, #ff8e3c 100%);
  --neon-cyan-purple: linear-gradient(135deg, #d46a18 0%, #ff8e3c 100%);
  --soft-pink-blue: linear-gradient(135deg, rgba(212, 106, 24, 0.1) 0%, rgba(255, 142, 60, 0.1) 100%);
  --vibrant-pink: linear-gradient(135deg, #d46a18 0%, #ff9852 100%);
  --blob-gradient-1: linear-gradient(135deg, rgba(212, 106, 24, 0.15) 0%, rgba(250, 239, 225, 0.6) 100%);
  --blob-gradient-2: linear-gradient(135deg, rgba(255, 142, 60, 0.1) 0%, rgba(250, 239, 225, 0.6) 100%);
  --navy: #3A0008;
  --dark-slate: #fdf8f0;
  --light-slate: #6e5441;
  --accent: #d46a18;
  --accent-cyan: #d46a18;
  --glass-bg: rgba(253, 248, 240, 0.95);
  --glass-border: rgba(212, 106, 24, 0.15);
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--light-slate);
  overflow-x: hidden;
  background: #081026;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

p {
  color: var(--light-slate);
  line-height: 1.8;
  font-size: 1.05rem;
}

.text-muted {
  color: #94a3b8 !important;
}

.bg-light {
  background-color: #0b1528 !important;
}

/* Custom Sticky Navbar */
.custom-navbar {
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgba(8, 16, 38, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.custom-navbar .navbar-brand {
  font-weight: 800;
  letter-spacing: -1px;
  color: #ffffff;
  font-size: 1.4rem;
}

.custom-navbar .navbar-brand i {
  color: var(--accent) !important;
}

.custom-navbar .navbar-brand span {
  background: var(--neon-cyan-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.custom-navbar .nav-link {
  font-weight: 600;
  color: var(--light-slate);
  padding: 0.5rem 1.2rem !important;
  transition: all 0.3s;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: var(--accent);
  transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 200px 0 130px 0;
  overflow: hidden;
  background: #081026;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Floating Blobs Background */
.blob-bg-1 {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: var(--blob-gradient-1);
  filter: blur(100px);
  z-index: -1;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: float-blob 20s infinite alternate ease-in-out;
}

.blob-bg-2 {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: var(--blob-gradient-2);
  filter: blur(100px);
  z-index: -1;
  border-radius: 50% 50% 30% 70% / 50% 30% 70% 50%;
  animation: float-blob-reverse 24s infinite alternate ease-in-out;
}

@keyframes float-blob {
  0% {
    transform: translate(0px, 0px) scale(1) rotate(0deg);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }

  33% {
    transform: translate(80px, 60px) scale(1.15) rotate(120deg);
    border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
  }

  66% {
    transform: translate(-40px, 90px) scale(0.9) rotate(240deg);
    border-radius: 50% 50% 30% 70% / 50% 30% 70% 50%;
  }

  100% {
    transform: translate(0px, 0px) scale(1) rotate(360deg);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
}

@keyframes float-blob-reverse {
  0% {
    transform: translate(0px, 0px) scale(1) rotate(360deg);
    border-radius: 50% 50% 30% 70% / 50% 30% 70% 50%;
  }

  33% {
    transform: translate(-90px, -40px) scale(0.9) rotate(240deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  66% {
    transform: translate(60px, -80px) scale(1.15) rotate(120deg);
    border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
  }

  100% {
    transform: translate(0px, 0px) scale(1) rotate(0deg);
    border-radius: 50% 50% 30% 70% / 50% 30% 70% 50%;
  }
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.15;
  margin-bottom: 1.8rem;
  letter-spacing: -2px;
}

.hero-title span {
  background: var(--neon-cyan-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

/* Premium Buttons */
.btn-premium {
  background: var(--neon-cyan-purple);
  color: #fff;
  font-weight: 700;
  padding: 0.95rem 2.5rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 8px 25px rgba(242, 100, 25, 0.3);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-premium:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 35px rgba(242, 100, 25, 0.5);
  color: #fff;
}

/* Hero Mockup Frame */
.mockup-container {
  position: relative;
  width: 100%;
}

.mockup-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.3));
}

/* Badge tags */
.tag-badge {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--primary-gradient);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(242, 100, 25, 0.2);
}

/* Features Cards */
.feature-card {
  background: #ffffff;
  border: 1px solid rgba(212, 106, 24, 0.1);
  border-radius: 28px;
  padding: 3rem 2.2rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(212, 106, 24, 0.04);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--neon-cyan-purple);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(242, 100, 25, 0.15);
}

.feature-icon-container {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  margin-bottom: 1.8rem;
  background: rgba(242, 100, 25, 0.1);
  font-size: 2rem;
  transition: all 0.3s;
  color: var(--accent) !important;
}

.feature-card:hover .feature-icon-container {
  background: var(--accent);
  color: #ffffff !important;
  transform: rotate(5deg);
}

/* Testimonial card absolute / relative blob styling */
.testimonial-blob-container {
  position: relative;
  padding: 40px;
}

.glass-testimonial {
  background: rgba(17, 30, 56, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.glass-testimonial-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: var(--soft-pink-blue);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  opacity: 0.9;
  filter: blur(5px);
  animation: morph-blob 12s infinite alternate ease-in-out;
}

@keyframes morph-blob {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  50% {
    border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%;
  }

  100% {
    border-radius: 70% 30% 50% 50% / 30% 50% 50% 70%;
  }
}

/* Team layout grid styling */
.team-grid img {
  border-radius: 24px;
  object-fit: cover;
  width: 100%;
  height: 220px;
  transition: all 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-grid img:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(242, 100, 25, 0.25);
}

.team-list {
  list-style: none;
  padding-left: 0;
}

.team-list li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.team-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: 900;
  font-size: 1.3rem;
  top: -2px;
}

/* Dotted Map overlay */
.map-section {
  position: relative;
  background-image: radial-gradient(circle, rgba(242, 100, 25, 0.1) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  min-height: 520px;
  padding: 120px 0;
  background-color: #fdf8f0;
}

.contact-overlay-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 0 40px 80px rgba(212, 106, 24, 0.05);
  border: 1px solid rgba(212, 106, 24, 0.1);
}

/* Form Styles */
.form-control {
  border-radius: 14px;
  padding: 0.9rem 1.4rem;
  background-color: #fdf8f0;
  border: 1.5px solid rgba(212, 106, 24, 0.15);
  color: var(--navy);
  font-family: inherit;
  transition: all 0.3s;
  font-weight: 500;
}

.form-control::placeholder {
  color: #94a3b8;
  opacity: 1;
}

.form-control:focus {
  background-color: #ffffff;
  color: #3A0008;
  border-color: var(--accent);
  box-shadow: 0 0 0 5px rgba(212, 106, 24, 0.25);
}

.contact-overlay-card .btn-premium {
  background: var(--neon-cyan-purple);
  color: #fff;
}

/* Info Icon colors */
.bg-primary {
  background-color: var(--accent) !important;
}

/* Footer components */
.footer-section {
  background-color: #3A0008;
  color: #c9b09d;
  padding: 90px 0 30px 0;
  border-top: 1px solid rgba(212, 106, 24, 0.15);
}

.footer-section h5 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1.8rem;
  letter-spacing: -0.5px;
}

.footer-section a {
  color: #c9b09d;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-section a:hover {
  color: #ffffff;
  padding-left: 3px;
}

.footer-gallery img {
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
}

.footer-gallery img:hover {
  opacity: 0.9;
  transform: scale(1.08) rotate(2deg);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  margin-right: 0.8rem;
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-section .text-primary {
  color: var(--accent) !important;
}

/* SVG color overrides to match orange/navy theme */
svg rect[fill="#6366f1"],
svg path[fill="#6366f1"] {
  fill: var(--accent) !important;
}

svg circle[fill="#a5b4fc"],
svg rect[fill="#a5b4fc"] {
  fill: #ffb085 !important;
}

svg circle[fill="#f472b6"] {
  fill: var(--accent) !important;
}

svg circle[fill="#38bdf8"] {
  fill: #ffffff !important;
}

svg rect[fill="#1e293b"] {
  fill: #111e38 !important;
}

svg rect[fill="#f8fafc"] {
  fill: #081026 !important;
}

svg rect[fill="#e2e8f0"] {
  fill: #0f1c35 !important;
}

svg rect[fill="#cbd5e1"] {
  fill: #1e293b !important;
}

svg path[fill="#cbd5e1"],
fill[fill="#cbd5e1"] {
  fill: #1e293b !important;
}

svg path[fill="#e2e8f0"] {
  fill: #0f1c35 !important;
}

/* --- Alternating Section Colors: Navy Navbar, White Hero, Dark Services --- */

body {
  background: #faefe1;
  color: #6e5441;
}

/* Navbar styling: Warm Cream Navbar with Bronze border */
.custom-navbar {
  background: #faefe1 !important;
  border-bottom: 1.5px solid rgba(212, 106, 24, 0.15) !important;
}

.custom-navbar .navbar-brand {
  color: var(--navy) !important;
}

.custom-navbar .nav-link {
  color: #6e5441 !important;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: var(--accent) !important;
}

/* Hero Section (Header): Soft Ivory Background */
.hero-section {
  background: #fdf8f0 !important;
  border-bottom: 1px solid rgba(212, 106, 24, 0.1) !important;
}

.hero-section h1 {
  color: var(--navy) !important;
}

.hero-section p {
  color: #6e5441 !important;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.blob-bg-1 {
  background: url('../../uploads/om1.jpg') no-repeat center/contain !important;
  border: none !important;
  filter: blur(5px) !important;
  opacity: 0.08 !important;
  z-index: 1 !important;
}

.blob-bg-2 {
  background: url('../../uploads/tamilom.png') no-repeat center/contain !important;
  border: none !important;
  filter: blur(2px) !important;
  opacity: 0.08 !important;
  z-index: 1 !important;
}


/* Services Section: Richer Warm Cream Background */
#services {
  background-color: #f3e4cb !important;
}

#services h2,
#services h4 {
  color: var(--navy) !important;
}

#services p {
  color: #6e5441 !important;
}

#services .feature-card {
  background: #ffffff !important;
  border: 1px solid rgba(212, 106, 24, 0.1) !important;
  box-shadow: 0 10px 30px rgba(212, 106, 24, 0.04) !important;
}

#services .feature-card:hover {
  box-shadow: 0 30px 60px rgba(212, 106, 24, 0.15) !important;
}

#services .feature-icon-container {
  background: rgba(212, 106, 24, 0.08) !important;
  color: var(--accent) !important;
}

#services .feature-card:hover .feature-icon-container {
  background: var(--accent) !important;
  color: #ffffff !important;
}

/* About Us Section: Soft Ivory Background */
#about.bg-light {
  background-color: #fdf8f0 !important;
}

#about h2 {
  color: var(--navy) !important;
}

#about p {
  color: #6e5441 !important;
}

#about .glass-testimonial {
  background: #ffffff !important;
  border: 1px solid rgba(212, 106, 24, 0.1) !important;
  color: #6e5441 !important;
  box-shadow: 0 40px 80px rgba(212, 106, 24, 0.04) !important;
}

#about .glass-testimonial h5 {
  color: var(--navy) !important;
}

/* Team Section: Warm Cream Background */
#team {
  background-color: #faefe1 !important;
}

#team h2 {
  color: var(--navy) !important;
}

#team p,
#team li {
  color: #6e5441 !important;
}

#team .team-list li::before {
  color: var(--accent) !important;
}

/* Contact Section: Soft Ivory Background */
#contact.map-section {
  background-color: #fdf8f0 !important;
}

#contact h2 {
  color: var(--navy) !important;
}

#contact p {
  color: #6e5441 !important;
}

#contact .contact-overlay-card {
  background: #ffffff !important;
  box-shadow: 0 40px 80px rgba(212, 106, 24, 0.05) !important;
  border: 1px solid rgba(212, 106, 24, 0.1) !important;
}

#contact .contact-overlay-card h3 {
  color: var(--navy) !important;
}

#contact .form-control {
  background-color: #fdf8f0 !important;
  border: 1.5px solid rgba(212, 106, 24, 0.15) !important;
  color: var(--navy) !important;
}

#contact .form-control::placeholder {
  color: #94a3b8 !important;
}

#contact .form-control:focus {
  background-color: #ffffff !important;
  color: var(--navy) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 5px rgba(212, 106, 24, 0.15) !important;
}

/* SVG color overrides for Cream Hero mockups */
.hero-section svg rect[fill="#081026"] {
  fill: #fdf8f0 !important;
}

.hero-section svg rect[fill="#111e38"] {
  fill: #f3e4cb !important;
}

.hero-section svg rect[fill="#0f1c35"] {
  fill: #faefe1 !important;
}

.hero-section svg rect[fill="#1e293b"] {
  fill: #faefe1 !important;
}

.hero-section svg rect[fill="#cbd5e1"] {
  fill: #6e5441 !important;
}

.hero-section svg path[fill="#cbd5e1"] {
  fill: #6e5441 !important;
}

.hero-section svg rect[fill="#e2e8f0"] {
  fill: #faefe1 !important;
}

/* Monitor Mockup Styling */
.monitor-mockup {
  max-width: 680px;
  width: 100%;
  position: relative;
  margin: 0 auto;
}

.monitor-screen {
  background: #000000;
  border: 14px solid #111e38;
  border-radius: 20px 20px 0 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
}

.monitor-camera {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #2e3c54;
  border-radius: 50%;
  z-index: 10;
}

.monitor-screen #monitorCarousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.monitor-screen .carousel-inner,
.monitor-screen .carousel-item {
  height: 100%;
}

.monitor-stand-neck {
  width: 90px;
  height: 50px;
  background: #cbd5e1;
  margin: 0 auto;
  position: relative;
  box-shadow: inset 0 10px 10px rgba(0, 0, 0, 0.1);
}

.monitor-stand-base {
  width: 200px;
  height: 8px;
  background: #94a3b8;
  margin: 0 auto;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Custom Carousel Controls inside Monitor */
.monitor-screen .carousel-control-prev,
.monitor-screen .carousel-control-next {
  width: 36px;
  height: 36px;
  background: #f26419 !important;
  border-radius: 50% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  opacity: 1.0 !important;
  transition: all 0.3s ease !important;
  border: none !important;
}

.monitor-screen .carousel-control-prev:hover,
.monitor-screen .carousel-control-next:hover {
  background: #ff7e3d !important;
  opacity: 1.0 !important;
}

.monitor-screen .carousel-control-prev {
  left: 10px !important;
}

.monitor-screen .carousel-control-next {
  right: 10px !important;
}

.monitor-screen .carousel-control-prev-icon,
.monitor-screen .carousel-control-next-icon {
  width: 16px !important;
  height: 16px !important;
}