/* ===============================
   GLOBAL VARIABLES & BASICS
=============================== */
:root {
  --maroon: #800000;
  --orange: #E65100;
  --light-bg: #fdfdfd;
  --text-dark: #222;
  --muted: #666;
  --radius: 10px;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: var(--light-bg);
  color: var(--text-dark);
}

/* ===============================
   HEADER & NAVIGATION - CLEAN FIX
=============================== */
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #800000, #ff6600);
  padding: 14px 60px;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-section img {
  height: 65px;
  width: 65px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #f5f5f5);
  padding: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15), 0 0 12px rgba(255, 102, 0, 0.2);
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-section img:hover {
  transform: scale(1.08);
  box-shadow: 0 3px 10px rgba(0,0,0,0.25), 0 0 16px rgba(255, 102, 0, 0.3);
}

.logo-section h1 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.logo-section p {
  font-size: 13px;
  margin: 0;
  opacity: 0.85;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffe0b3;
}

.btn-login {
  background: #fff;
  color: #800000 !important;
  padding: 6px 18px;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-login:hover {
  background: #ffcccb;
}

/* ===============================
   HERO SECTION
=============================== */
.hero {
  background: url('/public/assets/images/hero.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  color: #eee;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius);
  padding: 10px 20px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: var(--maroon);
}

/* ===============================
   SERVICES (HOME PAGE PREVIEW)
=============================== */
.services {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
}

.services h2 {
  color: var(--maroon);
  margin-bottom: 40px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.service-card {
  background: #f8f8f8;
  border-radius: var(--radius);
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  padding: 24px;
  width: 300px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* ===============================
   ABOUT SECTION
=============================== */
.about {
  background: #f9f9f9;
  text-align: center;
  padding: 60px 20px;
}

.about h2 {
  color: var(--maroon);
}

.btn-outline {
  border: 2px solid var(--maroon);
  padding: 10px 20px;
  color: var(--maroon);
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
}

.btn-outline:hover {
  background: var(--maroon);
  color: white;
}
/* ===============================
   Vision & CIO – Side-by-Side Premium Layout
=============================== */
.vision-leadership {
  background: linear-gradient(180deg, #fffdfa 0%, #fdfaf6 100%);
  padding: 100px 60px;
}

.vision-leadership-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Vision Card */
.vision-card {
  flex: 1 1 500px;
  background: #fff5f0;
  border-radius: 18px;
  padding: 50px 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}
.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.vision-card h2 {
  color: #800000;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}
.vision-card p {
  color: #333;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* CIO Card */
.cio-card {
  flex: 1 1 500px;
  background: #ffffff;
  border-radius: 18px;
  padding: 50px 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 25px;
  transition: all 0.4s ease;
}
.cio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.cio-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ff6600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.cio-info h3 {
  color: #7a0000;
  font-size: 22px;
  margin-bottom: 6px;
}
.cio-info .designation {
  color: #ff6600;
  font-weight: 600;
  margin-bottom: 12px;
}
.cio-info p {
  color: #444;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* Fade-In Animation */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpAbout 1s ease forwards;
}
@keyframes fadeUpAbout {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .vision-leadership {
    padding: 80px 30px;
  }
  .vision-leadership-container {
    flex-direction: column;
    align-items: center;
  }
  .vision-card,
  .cio-card {
    width: 100%;
    text-align: center;
  }
  .cio-card {
    flex-direction: column;
    align-items: center;
  }
  .cio-card img {
    width: 120px;
    height: 120px;
  }
}

/* ===============================
   FOOTER
=============================== */
.footer {
  background: var(--maroon);
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* ===============================
   FLOATING WHATSAPP & QUOTE
=============================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}

.whatsapp-float img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

.quote-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: background 0.3s ease;
}

.quote-float:hover {
  background: var(--maroon);
}

/* ===============================
   QUOTE MODAL
=============================== */
.quote-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.quote-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.quote-content h3 {
  color: var(--maroon);
  margin-bottom: 20px;
}

.quote-content input,
.quote-content select,
.quote-content textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: 'Poppins';
}

.quote-content button {
  width: 100%;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 22px;
  cursor: pointer;
  color: #999;
}

.close-btn:hover {
  color: var(--maroon);
}

/* ===============================
   SERVICES PAGE (DETAILED)
=============================== */
.services-page {
  padding: 80px 5%;
  background: #fff7f5;
  text-align: center;
}

.services-page h2 {
  color: #8b0000;
  font-size: 34px;
  margin-bottom: 10px;
  font-weight: 700;
}

.services-page p {
  font-size: 16px;
  max-width: 750px;
  margin: 0 auto 50px;
  color: #444;
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 30px;
}

.service-card {
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.service-info {
  padding: 20px;
  text-align: left;
}

.service-info h3 {
  color: #8b0000;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-info p {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.service-info ul {
  padding-left: 18px;
  margin: 0;
}

.service-info li {
  font-size: 14px;
  color: #555;
  margin-bottom: 4px;
  list-style-type: disc;
}

/* Visual color palettes */
.card-red   { background: #fff5f5; }
.card-gold  { background: #fff9f2; }
.card-orange{ background: #fff7f0; }
.card-grey  { background: #f9f9f9; }
.card-blue  { background: #f5f8ff; }
.card-green { background: #f5fff6; }

@media (max-width: 768px) {
  .services-page {
    padding: 60px 20px;
  }
  .service-card img {
    height: 200px;
  }
}

/* ===============================
   ABOUT PAGE
=============================== */
.about-page {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
  color: #333;
}

.about-page h2 {
  color: #800000;
  font-size: 32px;
  margin-bottom: 20px;
}

.about-page p {
  font-size: 16px;
  max-width: 700px;
  margin: 10px auto;
  line-height: 1.6;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
}

.about-stats div {
  background: #fff0e6;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.about-stats h3 {
  color: #8b0000;
  font-size: 28px;
  margin: 0;
}

.about-stats p {
  margin: 5px 0 0;
  font-weight: 500;
  color: #333;
}

/* ===============================
   CONTACT PAGE
=============================== */
.contact-page {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
  color: #333;
}

.contact-page h2 {
  color: #800000;
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.contact-form,
.contact-info {
  flex: 1 1 400px;
  background: #fff0e6;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: left;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: inherit;
}

.contact-form button {
  background: #8b0000;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #ff4500;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}
.service-info h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #8b0000;
}

.service-info h3 i {
  font-size: 18px;
  color: #ff6600;
}
/* ===============================
   TRUSTED PARTNERS STRIP – Premium Soft Palette
=============================== */
.partners-strip {
  background: #f9f7f4; /* subtle ivory background */
  padding: 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.03);
}

/* Soft palette band for the title */
.partners-strip-header {
  background: linear-gradient(180deg, #fcfaf8 0%, #f6f3ef 100%);
  padding: 40px 0 25px;
  margin-bottom: 0;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

/* Heading styling */
.partners-strip-header h2 {
  color: #7a0000;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin: 0;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s;
}

/* Fade-Up Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo scrolling container */
.partners-marquee {
  background: #fdfcfb;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  width: 100%;
  padding: 35px 0 45px;
}

/* Scrolling track */
.partners-track {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  animation: scrollLeft 40s linear infinite;
  will-change: transform;
}

/* ✅ Only pause when hovering over the logos */
.partners-track:hover {
  animation-play-state: paused;
}

/* Logo cards */
.partners-track img {
  height: 65px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 18px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

/* Hover: soft lift and glow */
.partners-track img:hover {
  transform: scale(1.06);
  opacity: 1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Smooth infinite scrolling */
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .partners-strip-header h2 {
    font-size: 24px;
  }
  .partners-track img {
    height: 55px;
    padding: 8px 14px;
  }
}

@media (max-width: 576px) {
  .partners-strip-header h2 {
    font-size: 20px;
  }
  .partners-track img {
    height: 45px;
    padding: 6px 10px;
  }
}


/* 🏆 Premium Home Page Services Section */
.services {
  background: linear-gradient(180deg, #ffffff 0%, #fff8f5 100%);
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,102,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.services::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(128,0,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.services h2 {
  color: #800000;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.services > p {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

.service-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 40px;
}

.service-card {
  flex: 1 1 300px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 40px 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,102,0,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.service-card h3 {
  color: #222;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.service-card h3 i {
  color: #ff6600;
  font-size: 20px;
}

.service-card p {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

.service-card:hover h3 i {
  transform: rotate(-10deg);
  transition: transform 0.4s ease;
}

/* Subtle fade-in animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

/* Responsive */
@media (max-width: 992px) {
  .services {
    padding: 80px 30px;
  }
  .service-grid {
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .service-card {
    padding: 30px 20px;
  }
  .service-card h3 {
    font-size: 20px;
  }
}
/* ✅ FIX: Logo resizing & alignment */
.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-section img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-section img:hover {
  transform: scale(1.05);
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.logo-section h1 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.logo-section p {
  font-size: 13px;
  margin: 0;
  opacity: 0.85;
  color: #fff;
}

/* Prevent large hero image logo overrides */
.hero img,
section.hero img {
  display: none;
}
/* ===============================
   CIO Leadership Section (Standalone)
=============================== */
.cio-section {
  background: linear-gradient(180deg, #fffdfb 0%, #fdfaf6 100%);
  padding: 80px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cio-card {
  background: #ffffff;
  border-radius: 20px;
  max-width: 950px;
  padding: 50px 45px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 40px;
  transition: all 0.4s ease;
}

.cio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.cio-card img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ff6600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.cio-info h3 {
  color: #7a0000;
  font-size: 24px;
  margin: 0 0 8px;
}

.cio-info .designation {
  color: #ff6600;
  font-weight: 600;
  margin-bottom: 15px;
}

.cio-info p {
  color: #444;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* Fade-Up animation */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpAbout 1s ease forwards;
}

@keyframes fadeUpAbout {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .cio-card {
    flex-direction: column;
    text-align: center;
    padding: 35px;
  }

  .cio-card img {
    width: 130px;
    height: 130px;
  }
}
