/* 2025 Trendy Font Imports: Place these in <head> of your HTML
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Inter:wght@400;600&family=Bodoni+Moda:wght@700&family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
*/
/* Import Google Fonts in HTML head */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Open+Sans&display=swap');

:root {
  --pv-primary: #1e3c72;
  --pv-primary-2: #2a5298;
  --pv-accent: #00bcd4;
  --pv-gold: #ffd60a;
  --pv-gradient: linear-gradient(90deg, #1e3c72, #2a5298);
  --pv-text: #23292f;
  --pv-bg: #f7f9fd;
}

/* Reset & Base */
body {
  font-family: 'Open Sans', 'Inter', Arial, sans-serif;
  background: var(--pv-bg);
  color: var(--pv-text);
  font-size: 16px;
  margin: 0;
}

/* Headings */
h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--pv-text); /* default dark text */
}
h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--pv-text);
}

/* Hero Legacy (contact bar) */
.hero-legacy {
  background: linear-gradient(135deg, rgba(76,175,80,0.85) 0%, rgba(139,195,74,0.85) 100%),
              url('Images/office-bg.jpg') center/cover no-repeat;
  padding: 12px 20px;
  line-height: 1;
  color: #fff;
  position: relative;
  box-shadow: inset 0 0 30px rgba(30, 115, 0, 0.7);
  border-bottom: 3px solid rgba(255, 255, 255, 0.8);
  margin-bottom: 1px;
}

/* Compact Contact Bar */
.hero-contact {
  background: linear-gradient(120deg, #0099f7 0%, #1e3c72 70%, #6c63ff 100%);
  color: #fff;
  font-size: 1em;
  line-height: 1;
  padding: 4.5px 0 2.5px 0;
  letter-spacing: 0.2px;
  margin-bottom: 0;
}

/* Ribbon/Navbar Styles */
.navbar {
  background: linear-gradient(90deg, #2a5298 90%, #ffd60a 100%);
  min-height: 40px;
  padding: 0.2rem 0;
  box-shadow: 0 2px 10px rgba(30,60,114,0.05), 0 1.5px 8px rgba(0,188,212,0.035);
  margin-bottom: 1px;
}

/* Logo */
.common-logo {
  height: 60px;
  width: auto;
  transition: filter 0.3s ease;
  filter: saturate(1.1);
}
.common-logo:hover { filter: brightness(1.15) contrast(1.1); }

/* Company title - premium style with fallback */
.company-title { 
  font-family: 'Bodoni Moda', 'Montserrat', Arial, serif;
  font-size: 1.4em;   /* ~30% smaller than 2em */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.6em;
  color: #f8f9f9; /* very dark navy */
  text-shadow: 2px 2px 6px rgba(255, 255, 255, 0.4); /* soft glow */
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out; /* smooth hover animation */
}

.company-title:hover {
  transform: scale(1.05);
  letter-spacing: 0.12em;
}

/* Gradient fallback removed — keep navy + glow even if supported */
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .company-title {
    color: #f9fafa; /* keep dark navy */
    text-shadow: 2px 2px 6px rgba(255, 255, 255, 0.4); /* keep glow */
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
  }
}


/* Contact text */
.contact-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

/* Navbar brand */
.navbar-brand { padding-left: 10px; }

/* Nav links */
.nav-link {
  position: relative;
  text-decoration: none !important;
  color: #fff !important;
  font-family: 'Merriweather', serif;
  font-weight: lighter;
  letter-spacing: 0.1em;
}
.nav-link::after { content: none !important; }

/* CTA Button */
.btn-cta {
  background: var(--pv-gold);
  color: var(--pv-primary) !important;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 25px;
  padding: 7px 22px;
  font-size: 1em;
  border: none;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.065);
  text-transform: uppercase;
  transition: all .18s cubic-bezier(.4, 0, 1, 1);
  white-space: nowrap;
}
.btn-cta:hover {
  background: #fff;
  color: var(--pv-primary) !important;
  box-shadow: 0 4px 24px rgba(30, 60, 100, 0.10);
}

/* Dropdown */
.dropdown-menu {
  background: #113868e9;
  border-radius: 10px;
  padding: 0.5em 0;
  box-shadow: 0 9px 20px rgba(30, 60, 114, 0.12);
}
.dropdown-item {
  color: #fff !important;
  font-size: .8em;
  border-radius: 7px;
  padding: 10px 21px !important;
  font-family: 'Merriweather', serif;
  font-weight: normal;
  letter-spacing: 0.1em;
}
.dropdown-item:hover {
  background: rgba(255, 214, 10, 0.14);
  color: var(--pv-primary) !important;
}

/* Hero Main Section */
.hero-main {
  background: linear-gradient(rgba(30, 60, 114, 0.84), rgba(42, 82, 152, 0.65)),
              url('Images/office-bg.jpg') center/cover no-repeat;
  min-height: 39.5vh;
  padding: 45px 0 38px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
.hero-main h1 {
  font-family: 'Bodoni Moda', 'Montserrat', Arial, serif;
  font-size: 2em;
  line-height: 1.13;
  letter-spacing: -1.2px;
  font-weight: 700;
  margin-bottom: 0.8em;
  color: #fff !important; /* ✅ force white */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}
.hero-main .lead {
  font-size: 1.23em;
  font-family: 'Open Sans', 'Inter', sans-serif;
  letter-spacing: 0.09em;
  margin-bottom: 1.8rem;
  color: #fbedbd;
}
.hero-main .btn-lg {
  font-size: 1em;
  padding: 8px 22px;
  margin-right: 0.5em;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 991.98px) {
  .common-logo { height: 40px; }
  .company-title { font-size: 1.4rem; }
  .contact-text { font-size: 1rem; }
  .hero-legacy { padding: 10px 15px; }

  .navbar { padding-left: 0.8rem; padding-right: 0.8rem; }
  .navbar-brand img { height: 30px; }
  .hero-main { min-height: 28vh; padding: 26px 0 19px 0; }
  .hero-main h1 { font-size: 1.7em; }
  .btn-cta, .hero-main .btn { font-size: 1em; padding: 9px 15px; }
}
@media (max-width: 575.98px) {
  .common-logo { height: 45px; }
  .company-title { font-size: 1.1rem; }
  .contact-text { font-size: 0.9rem; }
  .hero-legacy {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .hero-legacy > div { width: 100%; justify-content: center; }

  .navbar { padding: .2rem 0.24rem; }
  .navbar-brand img { height: 24px; }
  .hero-main { min-height: 21vh; padding: 15px 0 7px 0; }
  .hero-main h1 { font-size: 1.05em; }
  .navbar-nav { text-align: center; }
}


/* Card / Form styling */
.card{ border-radius:12px; }
.text-primary{ color:var(--pv-primary) !important; }

.col-form-label{
  padding-top:.25rem;
  padding-bottom:.25rem;
  font-weight:500;
}

/* Smaller controls */
.form-control-sm, .form-select-sm{
  padding:.35rem .5rem;
}

/* Validation feedback smaller */
.invalid-feedback{
  font-size:.8rem;
}

/* Improve textarea resizing */
textarea{ resize:vertical; }

/* Navbar spacing fix */
.pt-nav {
  padding-top: 70px; /* adjust to navbar height */
}

/* Form: improve spacing */
#consultationForm .row {
  margin-bottom: 0.75rem;
}

/* Make labels smaller on mobile, inputs full-width */
@media (max-width: 767.98px) {
  #consultationForm .col-form-label {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 0.25rem;
    text-align: left;
  }
  #consultationForm .form-control,
  #consultationForm .form-select,
  #consultationForm textarea {
    width: 100%;
  }
}

/* === Homepage Section Styles === */

/* Hero Section */
.hero {
  background: linear-gradient(rgba(30,60,114,0.7), rgba(42,82,152,0.7)),
              url('images/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 100px 0;
  text-align: center;
  border-radius: 12px;
}
.hero h1 {
  font-weight: 700;
  font-size: 2.8rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Section headings */
section h2 {
  font-weight: 600;
  color: var(--pv-primary);
  margin-bottom: 2rem;
  text-align: center;
}

/* Services Cards */
#services .card {
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#services .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}
#services .card-title {
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Why Us / Industries Boxes */
#why-us .shadow-sm,
#industries .shadow-sm {
  transition: all 0.3s ease;
}
#why-us .shadow-sm:hover,
#industries .shadow-sm:hover {
  background: var(--pv-primary);
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* Testimonials */
#testimonials p {
  font-style: italic;
  color: #555;
}
#testimonials h6 {
  font-weight: 600;
  margin-top: 0.75rem;
  color: var(--pv-primary);
}

/* === Responsive Tweaks === */
@media (max-width: 991.98px) {
  .hero {
    padding: 70px 20px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .hero {
    padding: 50px 15px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
  #services .card {
    margin-bottom: 1rem;
  }
  #why-us .col-md-4,
  #industries .col-md-4 {
    margin-bottom: 1rem;
  }
}


/* Contact page styles */

/* Contact Page Styles */
.contact-page {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 1rem;
}

.contact-page h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 2rem;
  gap: 1rem;
}

.info-box {
  flex: 1 1 250px;
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.info-box h3 {
  margin-bottom: 0.5rem;
  color: #444;
}

.info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.main-call-btn {
  display: inline-block;
  background: #0077cc;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.main-call-btn:hover {
  background: #005fa3;
}

.call-section {
  text-align: center;
  margin-top: 2rem;
}

.ext-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #666;
}

.extensions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.extensions button {
  background: #eee;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.3s;
}

.extensions button:hover {
  background: #ddd;
}

@media (max-width: 600px) {
  .extensions {
    flex-direction: column;
    align-items: center;
  }
  .extensions button {
    width: 80%;
  }
}

/* Extension buttons with unique colors */
.extensions button {
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 500;
  transition: transform 0.2s ease, background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.extensions button:hover {
  transform: scale(1.05);
}

/* Specific colors */
button[data-ext="1"] { background: #0077cc; }   /* Sales */
button[data-ext="2"] { background: #28a745; }   /* Support */
button[data-ext="3"] { background: #ff9800; }   /* Billing */
button[data-ext="4"] { background: #9c27b0; }   /* HR */
button[data-ext="5"] { background: #e53935; }   /* Management */

/* Contact info row */
.contact-info {
  text-align: center;
  margin-bottom: 2rem;
}


/* Section heading */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  margin: 0.4rem auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #4facfe, #00f2fe);
}

.section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

/* Force section title & subtitle to stack vertically */
.section-title,
.section-subtitle {
  display: block;
  width: 100%;
  text-align: center;
}

.contact-info {
  text-align: center;
  margin-bottom: 2rem;
}

/* Contact row */
.info-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Each box */
.info-box {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  flex: 1 1 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.info-box h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: #222;
}

.info-box p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

/* Links */
.info-box a {
  color: #0077cc;
  font-weight: 500;
  text-decoration: none;
}

.info-box a:hover {
  text-decoration: underline;
}

/* Glow effect on main call button */
.main-call-btn {
  box-shadow: 0 4px 12px rgba(0, 119, 204, 0.3);
}
.main-call-btn:hover {
  box-shadow: 0 6px 16px rgba(0, 95, 163, 0.4);
}

/* Extension button hover glow */
.extensions button {
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
.extensions button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}


/* footer section styles */

/* Footer Styles */
.site-footer {
  background: #0d1b2a;
  color: #fff;
  padding: 40px 20px 20px;
  margin-top: 50px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #ffd700;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #ffd700;
}

.footer-logo {
  height: 40px;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #aaa;
}

.extensions button {
  display: inline-block;
  padding: 10px 15px;
  margin: 5px;
  border-radius: 8px;
  background: #25d366; /* WhatsApp green */
  color: white;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

.extensions button:hover {
  background: #1ebe5b;
}

/* GST Calculator Styles */
.gst-calculator h2 {
  font-weight: bold;
  color: #00796b;
}

.gst-calculator table {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.gst-calculator table th, 
.gst-calculator table td {
  vertical-align: middle;
}

.gst-calculator input {
  text-align: right;
}

.totals-box {
  background: #f9f9f9;
  border: 2px solid #00796b;
  border-radius: 8px;
}

.totals-box h5 {
  color: #004d40;
}


/* Advanced TDS Calculator Styles */
/* TDS Calculator Styles */
/* Card Header Styles */
.card-header {
    font-size: 1.25rem;      /* slightly bigger text */
    font-weight: 600;        /* semi-bold */
    padding: 1rem 1.5rem;    /* more padding for better look */
    border-bottom: 2px solid #0d6efd;  /* colored bottom border */
    border-top-left-radius: 0.5rem;    /* rounded top corners */
    border-top-right-radius: 0.5rem;
}

/* Primary card header */
.card-header.bg-primary {
    background: linear-gradient(90deg, #0d6efd, #3a8dff); /* gradient for modern look */
    color: #fff;
    text-align: center;      /* center text */
}

.tds-calculator {
    padding: 40px 20px;
    background: #f0f8ff;
    border-radius: 12px;
}

.tds-calculator h2 {
    color: #0d6efd;
    font-weight: 700;
    text-align: center;       /* centers the text */
    margin-bottom: 2rem;      /* optional: spacing below heading */
}

.tds-calculator .form-label {
    font-weight: 500;
    text-align: center;       /* centers the text */
        
}

.tds-calculator .btn-success {
    background: #198754;
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

.tds-calculator .btn-success:hover {
    background: #145c3d;
}

#tdsResult .card-body {
    background: #e6f4ea;
}

#monthlyBreakdown {
    font-size: 1.1rem;
    color: #145c3d;
}

/* Tax Calculator page css */

.gradient-card {
  background: linear-gradient(135deg, #bebfbf, #e8eaea);
  border-radius: 15px;
  padding: 2rem;
  color: #0b0b0b; /* default text color black */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Headings */
.tax-calculator h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0b0b0b;
  margin-bottom: 1rem;
}

.tax-calculator h4 {
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #0c0c0c;
}

/* Form labels */
.tax-calculator .form-label {
  font-weight: 500;
  color: #0e0d0d;
}

/* Inputs */
.tax-calculator .form-control,
.tax-calculator .form-select {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 0.6rem;
  color: #000; /* text inside inputs black */
  background: #fff;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}

/* Buttons */
.tax-calculator button {
  margin: 5px;
  border-radius: 8px;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  transition: transform 0.2s;
}

.tax-calculator button:hover {
  transform: scale(1.05);
}

/* Result box */
.result-box {
  font-size: 1.3rem;
  font-weight: bold;
  color: #222; /* dark gray text */
  background: #ffffff;
  border: 2px solid #90caf9; /* soft blue border */
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

