/* 
   Azure Cloud Migration Landing Page Stylesheet
   Created with custom theme: Magenta/Pink & Deep Blue
*/

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

:root {
  /* Colors */
  --primary: #d12b70;
  --primary-hover: #b0205b;
  --primary-light: #fff0f6;
  --primary-light-hover: #ffd6e8;
  --secondary: #0f172a;
  --secondary-rgb: 15, 23, 42;
  --light-bg: #f8fafc;
  --text-muted: #64748b;
  --text-dark: #0f172a;
  --text-body: #334155;
  --border-color: #e2e8f0;
  --white: #ffffff;

  /* Fonts */
  --font-sans: 'Plus Jakarta Sans', sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.12);

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  color: var(--text-dark);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--primary-hover);
}

/* Custom Buttons & Badges */
.badge-accent-header {
  background-color: #D6247A26;
  color: #D6247A;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 2rem;
  display: inline-block;
}

.badge-accent {
  background-color: #FFFFFF;
  color: #D6247A;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.07; /* 19.2px */
  letter-spacing: 0.96px;
  text-transform: uppercase;
  border: 1px solid #FFB7DA;
  padding: 8px 18px;
  border-radius: 2rem;
  display: inline-block;
}

.btn-primary-custom {
  background-color: #D6247A;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 1.75rem;
  border-radius: 0.5rem;
  transition: var(--transition-smooth);
}

.btn-primary-custom:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(209, 43, 112, 0.4);
}

.btn-outline-custom {
  background-color: transparent;
  color: #D6247A;
  border: 1px solid #D6247A;
  font-weight: 600;
  padding: 1rem 1.75rem;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.btn-outline-custom:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-secondary-custom {
  background-color: var(--secondary);
  color: var(--white);
  border: 2px solid var(--secondary);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  transition: var(--transition-smooth);
}

.btn-secondary-custom:hover {
  background-color: #1e293b;
  border-color: #1e293b;
  color: var(--white);
  transform: translateY(-2px);
}

/* Custom Card System */
.card-custom {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.card-custom:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(209, 43, 112, 0.2);
}

.card-header-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
  /* Equivalent to gap-3 */
}

.card-icon-circle-pink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background-color: #fff0f3;
  /* Light pink background */
  border: 1px solid #ffccd8;
  /* Thin pink border */
  border-radius: 50%;
  /* Perfect circle */
}

.card-icon-circle-pink i {
  font-size: 24px;
  color: #e03080;
  /* Vibrant magenta/pink accent */
}

/* Custom heading style with a safety gap on the right */
.card-title-custom {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  /* SemiBold */
  font-style: normal;
  font-size: 1.5rem;
  /* 24px */
}

.card-icon-container {
  width: 58px;
  height: 58px;
  background-color: #FFF5FB;
  color: var(--primary);
  border-radius: 45px;
  display: flex;
  align-items: center;
  border: 1px solid #FFCCF4;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.card-custom:hover .card-icon-container {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

/* Specific Card Layouts with Images */
.card-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 20px;
}

.card-image-wrapper img {
  width: 100%;
  height: 226px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.card-custom:hover .card-image-wrapper img {
  transform: scale(1.06);
}

.WHYCHOOSEUS-Fotter {
  font-family: 'DM Sans', sans-serif;
font-weight: 500;
font-size: 1.25rem; /* 20px */
line-height: 1;     /* 100% */
}

/* Sticky Navbar */
.navbar-custom {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: 18px 0;
  transition: var(--transition-smooth);
}

.navbar-brand-custom {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-dark) !important;
}

.navbar-brand-custom span {
  color: var(--primary);
}

.nav-link-custom {
  color: var(--text-body) !important;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 12px;
  position: relative;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

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

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  padding: 100px 0 80px;
  background: radial-gradient(circle at 90% 10%, rgba(209, 43, 112, 0.05) 0%, rgba(255, 255, 255, 0) 60%);
}

.hero-title {
  font-size: 3.25rem;
  font-family: 'Montserrat', sans-serif;
  line-height: 59.8px;
  font-weight: 700;
  max-width: 584px;
}

.hero-title span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
   max-width: 584px;
}

.clutch-badge {
  display: inline-flex;
  align-items: center;
  background: var(--light-bg);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
}

.clutch-badge img {
  height: 20px;
  margin-right: 8px;
}

.hero-illustration {
  position: relative;
}

.hero-illustration img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Callout Banner Component */
.callout-banner {
  background: linear-gradient(135deg, #fff0f6 0%, #fff7fa 100%);
  border-radius: 24px;
  padding: 40px;
  border: 1px dashed rgba(209, 43, 112, 0.3);
  position: relative;
  overflow: hidden;
}

.callout-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(209, 43, 112, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
}

/* Hassle-Free Migration Illustration Box */
.azure-graphic-box {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  text-align: center;
}

.azure-central-cloud {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #0078d4 0%, #00bcf2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(0, 120, 212, 0.3);
  position: relative;
  z-index: 2;
}

.azure-graphic-nodes {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
  position: relative;
}

.azure-graphic-nodes::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: dashed var(--border-color);
  z-index: 1;
}

.node-item {
  position: relative;
  z-index: 2;
  background-color: var(--white);
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.node-item.node-db {
  color: #f25f22;
}

.node-item.node-code {
  color: #0078d4;
}

.node-item.node-server {
  color: #107c41;
}

.node-item.node-user {
  color: #b50e0e;
}


/* Custom Feature Checklist */
.heading-second {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.625rem;
  line-height: 1;
  letter-spacing: -0.0225rem;
}
.heading-main {
 font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1;
  letter-spacing: 0;
}
.heading-main span{
  color:#D6247A;
}
.heading-para{
  font-family: "DM Sans", sans-serif;
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    color: #5A5A6E;
    margin-top: 24px;
}



.heading-para {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.4; /* 22.4px */
  letter-spacing: 0;
}

.Cost-reduction {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.8rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.checklist-icon {
  background-color: var(--primary-light);
  color: var(--primary);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-right: 14px;
  margin-top: 2px;
}

/* Key Sectors Tab Section */
.sectors-tabs .nav-link {
  color: var(--text-muted);
  font-weight: 600;
  padding: 16px 24px;
  border: none;
  border-left: 4px solid transparent;
  border-radius: 0;
  text-align: left;
  transition: var(--transition-smooth);
}

.sectors-tabs .nav-link.active {
  background-color: var(--primary-light) !important;
  color: var(--primary) !important;
  border-left-color: var(--primary);
}

.sector-image-box img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}




.custom-faq-container {
  max-width: 100%;
}
@media (min-width: 768px) {
  .custom-faq-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .custom-faq-container {
    max-width: 840px;
  }
}
@media (min-width: 1400px) {
  .custom-faq-container {
    max-width: 1150px;
  }
}

/* Typography Responsive Scales */


/* Accordion Custom Layout & Structure */
.accordion-custom .accordion-item {
  border: 1px solid #f1f5f9;
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.015);
}

/* Accordion Header Buttons styling with responsive padding/font sizes */
.accordion-custom .accordion-button {
  font-family: "Montserrat", sans-serif;
font-weight: 600;
font-size: 1.375rem; /* 22px */
line-height: 1.2; /* ~26.4px */
color: #1A1A2E;
  background-color: #ffffff;
  border: none;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  
  /* Mobile default sizing */

  padding: 16px 20px;
}
@media (min-width: 768px) {
  .accordion-custom .accordion-button {
    font-size: 1.05rem;
    padding: 20px 24px;
  }
}

/* Background state when expanded */
.accordion-custom .accordion-button:not(.collapsed) {
  background-color: #ffffff;
  color: #D6247A;
}

/* Responsive Custom Vector Controls: Plus (+) Icon when collapsed */
.accordion-custom .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f172a'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E") !important;
  background-size: 1.25rem;
  background-repeat: no-repeat;
  background-position: center;
  transform: none !important;
}

/* Responsive Custom Vector Controls: Minus (-) Icon when expanded */
.accordion-custom .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d12b70'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E") !important;
  background-size: 1.25rem;
  transform: none !important;
}

/* Responsive Accordion Inner Body Context */
.accordion-custom .accordion-body {
  background-color: #ffffff;
 font-family: "Montserrat", sans-serif;
font-weight: 600;
font-size: 1.375rem; /* 22px */
line-height: 1.2; /* ≈26.4px */
letter-spacing: 0;
color: #5A5A6E;
  padding: 0px 20px 20px 20px;
}
@media (min-width: 768px) {
  .accordion-custom .accordion-body {
    font-size: 0.95rem;
    padding: 0px 24px 24px 24px;
  }
}

/* CTA Card */

/* Container Card */
.cta-pink-card {
  background-color: #FDD7E4; /* Soft pink background matching the image */
  border-radius: 40px; /* Highly rounded corners */
  padding: 60px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

/* Typography styles */
.cta-title {
  font-family: 'Montserrat', sans-serif;
  color: #1A1A2E; /* Dark navy/charcoal */
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-magenta {
  color: #D12574; /* Rich pink/magenta color from the image */
  display: block;
}

.cta-tagline {
  color: #1A1829;
    font-family: 'DM Sans', sans-serif;
  font-weight: 500;

  font-size: 1.1rem;
}

.cta-desc {
  color: #5C5A6B; /* Soft muted gray-dark text */
  font-size: 1.25rem;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500; 
  max-width: 750px;
  line-height: 1.5;
}

/* Button Styling */
.btn-magenta {
  background-color: #D12574;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px; /* Slightly rounded button edges */
  padding: 12px 28px;
  border: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.btn-magenta:hover {
  background-color: #B21B60; /* Slightly darker shade on hover */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(209, 37, 116, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cta-pink-card {
    padding: 40px 20px;
    border-radius: 25px;
  }
  .cta-title {
    font-size: 1.85rem;
  }
  .cta-tagline {
    font-size: 1rem;
  }
  .cta-desc {
    font-size: 0.95rem;
  }
}

/* Footer Links */
.footer {
  background-color: var(--secondary);
  color: #94a3b8;
  padding: 80px 0 30px;
}

.footer h5 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 24px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  margin-right: 10px;
  transition: var(--transition-smooth);
}

.social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
}

/* Responsive Overrides */


@media (max-width: 767px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .cta-gradient-card {
    padding: 40px 20px;
  }

  .sectors-tabs .nav-link {
    border-left: none;
    border-bottom: 3px solid transparent;
    text-align: center;
  }

  .sectors-tabs .nav-link.active {
    border-bottom-color: var(--primary);
  }
}

/* ==========================================================================
   Modernized Callout Banner (Matches your reference image layout)
   ========================================================================== */
.callout-banner-modern {
  background: #FFF3FB;
  border-radius: 28px;
  padding: 35px 30px;
  border: 1px solid #ffccd8;
  border-left: 14px solid #FF38CA;
  /* Thicker accent border left side */
  box-shadow: 10px 0px 0px 0px #FF38CA inset;

  position: relative;
  overflow: hidden;
}

/* Rounded Icon Circle */
.callout-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background-color: #FEF4F6;
  border: 2px solid #FDDCDD;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(224, 48, 128, 0.08);
}

.callout-icon-circle i {
  font-size: 32px;
  color: #e03080;
}

/* Vertical Pink Divider */
.callout-divider-line {
  width: 2px;
  height: 75px;
  background-color: #FF38CA;
  align-self: center;
}

/* Content Customizations */
.callout-title {
  color: #FF38CA !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.callout-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #475569 !important;
}

.callout-highlight {
  color: #FF38CA;
  font-weight: 400;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

/* Graphic on the right side */
.callout-right-graphic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Responsive adjustment for cleaner rendering on smaller screens */
@media (max-width: 767px) {
  .callout-banner-modern {
    border-left-width: 10px;
    padding: 25px 20px;
  }
}

/* ==========================================================================
   Partner Comparison Table Section Additions
   ========================================================================== */

/* Outer wrapper acting as a card bounding container */
.table-responsive-wrapper {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
       margin: 0 auto;
        max-width: 968px;
    width: 100%;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

/* Header style matching standard custom accent colors */
.comparison-table thead tr {
  background-color: #FDECF4;
}

.comparison-table th {
  padding: 18px 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #A8146B;
}

.comparison-table th:first-child {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.comparison-table th:last-child {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

/* Individual Data cell fields spacing */
.comparison-table td {
  padding: 20px 30px;
  border-bottom: 1px solid #FFF0F6;
  font-family: var(--font-sans);
  font-size: 1rem;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.challenge-td {
  color: #5A5A6E;
  font-weight: 500;
    font-family: 'DM Sans', sans-serif;
  
  font-size: 0.85rem;
}

.consequence-td {
  color: #1A1A2E;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
  
  font-size: 1.1rem;
}

/* Subtle background zebra patterning */
.comparison-table tbody tr:nth-child(even) {
  background-color: #FEF6FA;
}

/* Center Bottom Minimalist Callout Container */
.callout-inline-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 920px;
  margin: 32px auto 0;
  padding: 12px 20px;
}

.callout-inline-icon {
  width: 46px;
  height: 46px;
  background-color: #FFF5FB;
  border: 1px solid #FFCCF4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.callout-inline-icon i {
  color: var(--primary);
  font-size: 1.25rem;
}

.callout-inline-text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.6;
}

.callout-inline-text span {
  color: var(--primary);
  font-weight: 700;
}

/* ==========================================================================
   Responsive Adaptation Overrides for Smaller Breakpoints
   ========================================================================== */
@media (max-width: 880px) {
  /* Dynamic conversion from structural desktop layout columns to separate block element entities */
  .comparison-table, 
  .comparison-table thead, 
  .comparison-table tbody, 
  .comparison-table th, 
  .comparison-table td, 
  .comparison-table tr { 
    display: block; 
  }
  
  .comparison-table thead {
    display: none; /* Hide multi-column standard desktop structural titles completely */
  }
  
  .table-responsive-wrapper {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  
  }
  
  .comparison-table tr {
    background: var(--white) !important;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    margin-bottom: 20px;
    padding: 18px;
    box-shadow: var(--shadow-sm);
  }

  .comparison-table td {
    border: none !important;
    padding: 10px 15px !important;
    position: relative;
    padding-left: 45% !important;
    text-align: right;
  }

  /* Insert layout labels through programmatic context string referencing data tags */
  .comparison-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    top: 10px;
    width: 40%;
    text-align: left;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
  }
  
  .comparison-table td.challenge-td::before {
    color: var(--text-muted);
  }
  
  .comparison-table td.consequence-td::before {
    color: var(--primary);
  }
  
  .callout-inline-footer {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .comparison-table td {
    padding-left: 15px !important;
    text-align: left;
  }
  
  .comparison-table td::before {
    position: static;
    display: block;
    margin-bottom: 6px;
    width: 100%;
  }
}

/* ==========================================================================
   PIXEL-PERFECT MATCH FOR THE PROVIDED LAYOUT IMAGE
   ========================================================================== */

/* Section wrapper background color tone */
.azure-services-section {
  background-color: #fafbfc !important;
}

/* Header Text Styles */
.services-title-main {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #0f172a;
  letter-spacing: -0.02rem;
}

/* Pink Accent Header Pill */
.badge-services-pill {
  background-color: #fff0f6;
  color: #d12b70;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid #ffd6e8;
  display: inline-block;
}

/* 2-Column Responsive Layout Grid System */
.azure-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Individual Card Blocks (Vertical Stack Layout) */
.azure-service-card {
  background-color: #FEFDFE !important;
  border-radius: 28px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 2px 6px 0px #1118270D;
  border: 1px solid #F2F2F2;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.azure-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
}

/* Extends the 7th block completely across the bottom track width */
.card-span-full {
  grid-column: span 2;
}

/* Circular Blue Graphic Layout Frame */

.azure-icon-box-img{
  width:30px;
  height:30px;

}

.rivira-icon{
  width:28px;
  height:28px;

}
.azure-icon-box {
  width: 50px;
  height: 50px;
  background-color: #F4ECFF; 
  color: #2563eb;          
  border-radius: 50%;
  display: flex;
  align-items: center;
  border: 1px solid #CFCCFF;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 24px; /* Creates spacing below the icon */
}

/* Internal Card Headline Typography */


/* Card Body Copy Paragraph Styles */
.azure-card-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: #666C84;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Accent Action Footer Button Design */
.btn-azure-pink {
  background-color: #d12b70;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  display: inline-block;
  transition: all 0.2s ease;
}

.btn-azure-pink:hover {
  background-color: #b0205b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(209, 43, 112, 0.2);
}

/* ==========================================================================
   RESPONSIVE LAYOUT CONSTRAINTS
   ========================================================================== */
@media (max-width: 991px) {
  /* Collapse layout into a safe single file list on midsize screens */
  .azure-services-grid {
    grid-template-columns: 1fr;
  }
  
  .card-span-full {
    grid-column: span 1;
  }
}



@media (max-width: 576px) {
  .azure-service-card {
    padding: 24px;
  }
}



/* Rounded Corner Box Layout for the Side Image Frame */


/* ==========================================================================
   AZURE OUTCOMES SECTION STYLES
   ========================================================================== */

/* Section wrapper background color tone */
.azure-services-section {
  background-color: #fafbfc !important;
}

/* Header Text Styles */
.services-title-main {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #0f172a;
  letter-spacing: -0.04rem;
}

/* Pink Accent Header Pill */
.badge-services-pill {
  background-color: #fff0f6;
  color: #d12b70;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid #ffd6e8;
  display: inline-block;
}

/* Individual Card Blocks */
.azure-service-card {
  background-color: #ffffff !important;
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 4px 20px rgba(15, 23, 42, 0.03);
  border: 1px solid #f1f5f9;
  align-items: flex-start;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.azure-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  border-color: rgba(209, 43, 112, 0.15);
}

/* Circular Blue/Indigo Graphic Layout Frame for Icons */
.azure-icon-box {
  width: 50px;
  height: 50px;
  background-color: #eef2ff; 
  color: #3b82f6;          
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 24px;
  border: 1px solid #e0e7ff;
  transition: all 0.3s ease;
}

.azure-service-card:hover .azure-icon-box {
  background-color: #3b82f6;
  color: #ffffff;
  transform: scale(1.05);
}

/* Internal Card Headline Typography */

.azure-card-heading {
  font-family: "Montserrat", sans-serif;
font-weight: 600;
font-size: 1.5rem;          /* 24px */
line-height: 1.8rem;        /* 28.8px */
  color: #1A1A2E;
letter-spacing: -0.0225rem; /* -0.36px */
vertical-align: middle;
}

/* Card Body Copy Paragraph Styles */


/* Modernized Callout Banner Frame */
.callout-banner-modern {
  background: #fff5fa;
  border-radius: 24px;
  border: 1px solid #ffe3f1;
  position: relative;
  overflow: hidden;
}

/* Rounded Icon Circle for Callout Banner */
.callout-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  background-color: #FFECFA !important;
  border: 1px solid #FFCCE7;
  border-radius: 45%;
}

.callout-icon-circle i {
  font-size: 1.6rem;
  color: #d12b70;
}

/* Accent Action Button Design */
.btn-azure-pink {
  background-color: #d12b70;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 12px;
  display: inline-block;
  border: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-azure-pink:hover {
  background-color: #b0205b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(209, 43, 112, 0.25);
}

/* ==========================================================================
   RESPONSIVE UTILITIES AND MEDIA QUERIES
   ========================================================================== */
@media (max-width: 991px) {
  .services-title-main {
    font-size: 2.15rem;
  }
}

@media (max-width: 767px) {
  .services-title-main {
    font-size: 1.85rem;
  }
  
  .azure-service-card {
    padding: 28px 24px;
  }
  
  .callout-banner-modern {
    padding: 32px 20px !important;
  }
  
  .btn-azure-pink {
    width: 100%;
  }
}
/* ==========================================================================
   Center-Track Vertical Timeline & Nodes
   ========================================================================== */
/* ==========================================================================
   Dashed Track Inter-Node Vertical Timeline Component
   ========================================================================== */
.timeline-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 0;
}

/* Single dashed tracking line across center */
.timeline-wrapper::after {
  content: '';
  position: absolute;
  width: 4px;
  border-left: 7px dashed #d12b70; /* Your primary magenta color */
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  
  /* PIXEL PERFECT TRICK: Clips the track exactly between Node 1 center and Node 7 center */
  clip-path: inset(45px 0px 45px 0px); 
}

/* Individual Content Rows */
.timeline-row {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.timeline-row:last-child {
  margin-bottom: 0;
}

/* Layout Split Orientations */
.left-timeline {
  flex-direction: row-reverse;
}

.right-timeline {
  flex-direction: row;
}

/* Standard Content Cards */
.timeline-card-block {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 30px;
  width: calc(50% - 45px); /* Perfectly fills the split columns space */
 box-shadow: 0px 2px 8px 0px #1A1A2E0D;
  box-sizing: border-box;
}
.timeline-card-block h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #1A1A2E;
  margin-bottom: 12px;
}
.timeline-card-block p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #4A5568;
  margin-bottom: 0;
}

/* Floating Center Number Nodes */
.timeline-node {
  position: absolute;
  width: 56px;
  height: 56px;
  background-color: #d12b70;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(209, 43, 112, 0.4);
}

/* ==========================================================================
   Responsive Mobile Optimization Breakpoint
   ========================================================================== */
@media (max-width: 991px) {
  /* Shift dashed line tracking safely to the left edge */
  .timeline-wrapper::after {
    left: 21px;
    transform: none;
    /* Adjusts boundary clipping heights correctly inside vertical standard blocks list */
    clip-path: inset(25px 0px 25px 0px); 

  }

  /* Break dual row structures back down to linear items blocks */
  .timeline-row {
    flex-direction: row !important;
    padding-left: 55px;
    box-sizing: border-box;
  }

  .timeline-card-block {
    width: 100%;
  }

  /* Snap circle nodes safely above the newly adjusted left margin line */
  .timeline-node {
    left: 0;
    transform: none;
  }
}

/* ==========================================================================
   Cost Section Specific Responsive Styling (Isolated Namespace)
   ========================================================================== */

/* Outer Section Layout Wrapper */
.cost-sec-container {
  background-color: #fafbfc !important;
}

/* Header Text Style with Responsive Scaling */


/* Top Accent Pink Pill */
.cost-sec-pill {
  background-color: #fff0f6;
  color: #d12b70;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid #ffd6e8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Unique Card Block (Vertical Stack Layout) */
.cost-factor-card {
  background-color: #FEFDFE !important;
  border-radius: 28px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0px 4px 16px 0px rgba(17, 24, 39, 0.04);
  border: 1px solid #F2F2F2;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cost-factor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

/* Circular Icon Box */
.cost-icon-circle {
  width: 60px;
  height: 60px;
  background-color: #EEF2FF; 
  color: #2563eb;          
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  border: 1px solid #DCE4FF;
  transition: all 0.3s ease;
}

.cost-factor-card:hover .cost-icon-circle {
  background-color: #2563eb;
  color: #ffffff;
}

/* Headline Formatting inside Cards */
.cost-factor-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #1A1A2E;
  font-size: 1.25rem !important;
  margin-bottom: 0;
}

/* Modernized Callout Banner Frame */
.cost-callout-banner {
  background: #FDF3F7;
  border-radius: 2rem;
  border: 1px solid #ffccd8;
  position: relative;
  padding: 40px 32px;
  overflow: hidden;
}

.cost-callout-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color:#43434C;
}

/* Rounded Icon Circle for Callout Banner */
.cost-callout-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  background-color: #FFECFA;
  border: 1px solid #FFCCE7;
  border-radius: 50%;
}

.cost-callout-icon i {
  color: #D6247A;
  font-size: 2rem;
}

/* Accent Action Footer Button Design */
.cost-btn-pink {
  background-color: #d12b70;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  display: inline-block;
  transition: all 0.2s ease;
}

.cost-btn-pink:hover {
  background-color: #b0205b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(209, 43, 112, 0.2);
}

/* ==========================================================================
   Responsive Adaptation Breakpoints
   ========================================================================== */

@media (max-width: 991px) {
  .cost-sec-title {
    font-size: 2.15rem;
  }
}

@media (max-width: 767px) {
  .cost-sec-title {
    font-size: 1.85rem;
  }
  
  .cost-sec-subtitle {
    font-size: 1.05rem;
  }

  .cost-factor-card {
    padding: 30px 20px;
  }

  .cost-factor-text {
    font-size: 1.1rem !important;
  }

  .cost-callout-banner {
    padding: 30px 20px !important;
    border-left: 8px solid #FF38CA;
    box-shadow: 6px 0px 0px 0px #FF38CA inset;
  }

  .cost-btn-pink {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   Why Choose Us Section Component Rules
   ========================================================================== */

/* Accent Badge Pill */
.badge-services-pill {
  background-color: #FFF0F6;
  color: #D12B70;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid #FFD6E8;
  display: inline-block;
}

/* Section Title Typography */
.WHY-RIVIRA-SYSTEMS-head {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.15rem; /* Matches image hierarchy scale */
  line-height: 1.25;  
  color: #1E293B; /* Deep Slate Gray */
}

/* Light Purple-Blue Circular Background Frame for Icons */
.why-us-icon-circle {
  width: clamp(50px, 5vw, 60px);
  height: clamp(50px, 5vw, 60px);
  background-color: #F4ECFF; /* Ultra soft indigo tint */
  border: 1px solid #CFCCFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.rivira-system-icon{
   width: clamp(28px, 3vw, 35px);
  height: clamp(28px, 3vw, 35px);
}


.why-us-icon-circle i {
  color: #0466E8; /* Classic cloud blue */
  font-size: 1.7   rem;
}

/* Feature Item Copy Typography Alignment */
.why-us-text {
   font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.4;
  letter-spacing: 0;
  color: #1A1A2E;
}

/* Rounded Corner Box Layout for the Side Image Frame */
.why-us-image-frame {
  overflow: hidden;
  border-radius: 32px; /* Smooth extra large radius matching the image */
}

.why-us-image-frame img {
  object-fit: cover;
  width: 100%;
  max-width: 486px;
  min-height: 513px;
  border-radius: 32px;
  overflow: hidden; /* Provides explicit visual balance alongside the text stacks */
  display: block;
}

/* Responsive Adaptive Tweak for smaller portrait displays */
@media (max-width: 991px) {
  .why-us-image-frame img {
    height: 360px;
  }
  .WHY-RIVIRA-SYSTEMS-head {
    font-size: 1.85rem;
  }
}

/* OUR SERVICES */
/* OUR SERVICES */

/* Badge Styling */
.industry-tag {
  background-color: #FFF0F5;
  color: #E63956;
  border: 1px solid #FFD1DC;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

/* Tab Item Default Container */
.tab-item {
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding-top: 4px;
  padding-bottom: 4px;
}

/* Sector Title Styling (Montserrat, 600, 24px, #1A1A2E) */
.sector-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: 1.2; /* 28.8px */
  letter-spacing: -0.36px;

}

/* Description Accordion Animation */
.tab-description {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

/* Active State Rules */
.tab-item.active {
  border-left-color: #007BFF !important; /* Blue indicator line */
}

.tab-item.active .sector-title {
  color: #007BFF !important; /* Active text color */
}

.tab-item.active .tab-description {
  max-height: 100px;
  opacity: 1;
  margin-top: 6px;
}

/* Mobile responsive adjustments */
@media (max-width: 576px) {
  .sector-title {
    font-size: 20px !important;
  }
}

/* Card Container */
.dynamics-section .hero-card {
  background-color: #ffffff;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
}

/* Badge Pill */
.dynamics-section .badge-pill {
  background-color: #fff0f5;
  color: #e0247d;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #fcddec;
}

/* Headings and Typography */
.dynamics-section .title-heading {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0d1b2a;
  line-height: 1.25;
}

.dynamics-section .text-highlight {
  color: #d61f69;
}

.dynamics-section .description-text {
  line-height: 1.6;
}

/* Left Image Box */
.dynamics-section .image-container {
  border-radius: 32px;

}
.dynamics-section-heading {
  max-width: 584px;
}
.dynamics-section .features-list {
  max-width: 529px;
}

/* Feature List Styling */
.dynamics-section .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.dynamics-section .feature-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 27.5px;
  background-color: #f0f4ff;
  color: #0466E8;
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.dynamics-section .feature-text {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 24px; /* Recommended for 16px text */
    color: #666C84;
    margin: 0;
}

/* Bottom Quote Box */
.dynamics-section .quote-box {
    background:#FDF3F7;
    border-radius:32px;
    padding: 2.5rem 2rem;
    display:flex;
    align-items:flex-start;
    gap:16px;
}
.dynamics-section h6 {
      font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    line-height: normal; /* or specify if your design has a value */
    color: #1A1A2E;

}

.dynamics-section .quote-text {
    flex:1;
    font-family:"DM Sans",sans-serif;
    font-size:18px;
    font-weight: 400;
    line-height:25.2px;
    color:#43434C;
    margin:0;
}

.dynamics-section .quote-icon {
    color:#D6247A;
    font-size:28px;
    line-height:1;
    flex-shrink:0;
    margin-top:2px;
}

.dynamics-section .quote-icon-right {
  margin-left: auto;
  transform: scaleX(-1);
}

/*   */
.money-icon{
    width: 50px;
    height: 50px;
    border: 3px solid #E91E63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E91E63;
    font-size: 24px;
    box-sizing: border-box;
}