

/* ============================================
   NEW DESIGN - FRESH COLOR SCHEME & LAYOUT
   ============================================ */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    /* NEW COLOR PALETTE - Professional Teal Theme (Logo Matching) */
    --color-primary: #0d9488;        /* Deep Teal - Matches Logo */
    --color-primary-dark: #0f766e;   /* Darker Teal */
    --color-secondary: #06b6d4;    /* Cyan/Teal */
    --color-accent: #f97316;         /* Orange/Coral */
    --color-accent-light: #fb923c;   /* Light Orange */
    --color-dark: #1e293b;          /* Slate Dark */
    --color-dark-2: #0f172a;         /* Slate Darker */
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-gradient-1: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #06b6d4 100%);
    --bg-gradient-2: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    --bg-gradient-3: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    
    /* Text Colors */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    
    /* Legacy Support */
    --color-primary-old: #05618a;
    --orange: #f97316;
    --para-color: #64748b;
    --back-color: #f8fafc;
    
    /* Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    --spacing-4xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --shadow-colored: 0 10px 30px rgba(13, 148, 136, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Typography */
body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--bg-primary);
}

/* ============================================
   NEW SPLIT HERO SECTION - COMPLETELY NEW LAYOUT
   ============================================ */
.split-hero {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.split-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.split-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* .split-hero-content {
    padding: var(--spacing-xl) 0;
} */

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(13, 148, 136, 0.1);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(13, 148, 136, 0.2);
}
.third-party-verification {
    background: white;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}
.contact-info {
    padding: 0 35px;
}
.third-party-verification p.para {
    padding-bottom: 16px;
}
.why-should-you {
    text-align: left;
}
.why-should-you .why-should-text h3 {
    margin-bottom: 30px !important;
}
.split-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.split-hero-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-2xl);
    color: var(--text-secondary);
    max-width: 550px;
    text-align: justify;
}
.how-may-help-text.howmay-gap h3 {
    margin: 0;
}

.split-hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.btn-split-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-primary);
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.3);
}

.btn-split-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(13, 148, 136, 0.4);
    color: var(--text-white);
}

.btn-split-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition-base);
    border: 2px solid var(--color-primary);
}

.btn-split-outline:hover {
    background: var(--color-primary);
    color: var(--text-white);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-2xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(13, 148, 136, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000000;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.split-hero-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.floating-card {
    position: absolute;
    background: var(--bg-primary);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.floating-card span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.card-1 {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: -10%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 24px;
  height: 2px;
  background-color: black;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: black;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

/* WHEN MENU IS OPEN */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Stats Bar */
.stats-bar {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-gradient-1);
    color: var(--text-white);
    margin-top: -1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.stat-box {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    margin: 0;
    line-height: 1;
}

.stat-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0.25rem 0 0;
}

/* Why Choose Section */
.why-choose-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-primary);
}

.section-intro {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto var(--spacing-4xl);
}

.intro-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-gradient-3);
    color: var(--text-white);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 1300px;
    margin: 0 auto;
    text-align: justify;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl);
}

.why-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(13, 148, 136, 0.1);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bg-gradient-1);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.why-card-number {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(13, 148, 136, 0.1);
    line-height: 1;
}

.why-card-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-gradient-1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
}

.why-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}
p.why-card.p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    text-align: justify;
}
.why-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    text-align: justify;
}

.why-card-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 200px;
    margin-top: var(--spacing-lg);
}

.why-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Masonry Grid */
.services-grid-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.services-masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: var(--spacing-lg);
}

.service-tile {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(13, 148, 136, 0.1);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.service-tile::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bg-gradient-1);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.service-tile:hover::after {
    transform: scaleX(1);
}

.service-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.tile-large {
    grid-column: span 6;
    grid-row: span 2;
}

.tile-featured {
    grid-column: span 6;
    grid-row: span 2;
    background: var(--bg-gradient-1);
    color: var(--text-white);
}

.tile-featured h3,
.tile-featured p {
    color: var(--text-white);
}

.tile-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.service-tile:nth-child(2),
.service-tile:nth-child(3) {
    grid-column: span 3;
    grid-row: span 1;
}

.service-tile:nth-child(5) {
    grid-column: span 3;
    grid-row: span 2;
}

.tile-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
}

.tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tile-content {
    position: relative;
    z-index: 1;
}

.tile-icon {
    width: 65px;
    height: 63px;
    background: rgba(13, 148, 136, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.tile-featured .tile-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.service-tile h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.service-tile p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.tile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
}

.tile-featured .tile-link {
    color: var(--text-white);
}

.tile-link:hover {
    gap: 0.75rem;
}

.tile-link i {
    transition: transform var(--transition-base);
}

.tile-link:hover i {
    transform: translateX(5px);
}

.tile-image-small {
    width: 100%;
    height: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.tile-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Benefits Split */
.benefits-split {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
}

.benefits-split-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}
.key-benefits-p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: justify;
    margin-bottom: 70px;
}
.benefits-split-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.benefits-split-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    text-align: justify;
}
.reasons-to-use span.intro-badge {
    margin: 0 auto;
    display: table;
}
.reasons-to-use h2.section-main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    text-align: center;
    margin-top: 21px;
    margin-bottom: 27px;
}
.reasons-to-use p.why-card.p {
    margin-bottom: 60px;
}
.benefits-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.benefit-feature {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    border-bottom: 1px solid #efefef;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(13, 148, 136, 0.1);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    min-height: 158px;
}
.benefit-feature:hover{
        transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}
.feature-check {
    width: 40px;
    height: 40px;
    background: var(--bg-gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-feature h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.benefit-feature p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.benefits-split-visual {
    position: relative;
}

.visual-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.visual-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Split */
.cta-split {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-gradient-2);
    color: var(--text-white);
}

.cta-split-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

.cta-split-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
}

.cta-split-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    text-align: justify;
}

.btn-cta-primary {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    background: var(--color-accent);
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.btn-cta-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.5);
    color: var(--text-white);
}

.cta-split-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-split-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   OLD HERO SECTION (Keeping for compatibility)
   ============================================ */
.hero-section-new {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-img-mobile {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-gradient-1);
    opacity: 0.92;
    z-index: 2;
}

.hero-content-new {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: var(--spacing-3xl) var(--spacing-lg);
    color: var(--text-white);
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-lg);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    color: var(--color-accent);
    margin-right: 0.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: var(--text-white);
    letter-spacing: -0.03em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.8;
    margin-bottom: var(--spacing-2xl);
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    background: var(--color-accent);
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
    border: 2px solid transparent;
}

.btn-hero-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.5);
    color: var(--text-white);
}

.btn-hero-secondary {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    background: transparent;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition-base);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    color: var(--text-white);
}

/* Content Sections - Modern Grid Layout */
.content-section {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.content-section.section-alt {
    background: var(--back-color);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.content-grid-reverse {
    direction: rtl;
}

.content-grid-reverse > * {
    direction: ltr;
}

.content-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base);
}

.content-image:hover {
    transform: translateY(-5px);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-lg);
}

.content-text {
    padding: var(--spacing-lg);
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-accent {
    display: block;
    width: 60px;
    height: 4px;
    background: var(--orange);
    margin-bottom: var(--spacing-md);
    border-radius: 2px;
}

.content-text h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
    letter-spacing: -0.01em;
}

.content-text p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    color: var(--para-color);
    margin-bottom: var(--spacing-md);
}

/* ============================================
   NEW SECTIONS - CARD-BASED LAYOUT
   ============================================ */

/* Features Section */
.features-section {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-secondary);
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-gradient-3);
    color: var(--text-white);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.features-grid {
    display: grid;
    gap: var(--spacing-2xl);
}

.feature-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-3xl);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--spacing-2xl);
    align-items: center;
    transition: all var(--transition-base);
    border: 1px solid rgba(13, 148, 136, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-gradient-1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-white);
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.feature-image {
    width: 300px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Showcase */
.services-showcase {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-primary);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-2xl);
}

.showcase-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    border: 1px solid rgba(13, 148, 136, 0.1);
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.showcase-card-large {
    grid-row: span 2;
}

.card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.showcase-card-large .card-image {
    height: 350px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.showcase-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-gradient-1);
    opacity: 0.3;
    transition: opacity var(--transition-base);
}

.showcase-card:hover .card-overlay {
    opacity: 0.5;
}

.card-content {
    padding: var(--spacing-2xl);
}

.card-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--bg-gradient-1);
    color: var(--text-white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-content h2,
.card-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
}

.card-link:hover {
    color: var(--color-primary-dark);
    gap: 0.75rem;
}

.card-link i {
    transition: transform var(--transition-base);
}

.card-link:hover i {
    transform: translateX(5px);
}

/* Benefits Section */
.benefits-section {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-gradient-2);
    color: var(--text-white);
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.benefits-content .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.benefits-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
}

.benefits-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
}

.benefits-list {
    list-style: none;
    display: grid;
    gap: var(--spacing-md);
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
}

.benefits-list i {
    color: var(--color-accent);
    font-size: 1.5rem;
}

.benefits-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--bg-gradient-3);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-secondary);
}

.cta-card {
    background: var(--bg-gradient-1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-4xl);
    text-align: center;
    color: var(--text-white);
    box-shadow: var(--shadow-colored);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-xl);
    font-size: 2.5rem;
    color: var(--text-white);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    color: var(--text-white);
}

.cta-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
}

.cta-image {
    max-width: 500px;
    margin: var(--spacing-2xl) auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Enhanced Navbar */
.navbar {
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.navbar-brand img {
    height: 60px;
    transition: transform var(--transition-base);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-primary) !important;
    margin: 0 var(--spacing-sm);
    position: relative;
    transition: color var(--transition-base);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.nav-link:hover {
    color: var(--color-primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--bg-gradient-1);
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

/* ============================================
   NEW FOOTER DESIGN
   ============================================ */
.footer-new {
    background: var(--bg-gradient-2);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    color: var(--text-white);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: var(--spacing-md);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.footer-social span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.social-icons-footer {
    display: flex;
    gap: var(--spacing-sm);
}

.social-icons-footer a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons-footer a:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    border-color: var(--color-accent);
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: 10px;
}

.footer-column h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--bg-gradient-3);
    border-radius: var(--radius-full);
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-list li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.footer-list li i {
    color: var(--color-accent);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-list li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-list li a:hover {
    color: var(--text-white);
    transform: translateX(5px);
}

.footer-list li a i {
    font-size: 0.75rem;
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

/* ============================================
   INNER PAGES STYLES - NEW COLOR SCHEME
   ============================================ */

/* ============================================
   NEW INNER PAGE LAYOUT - SIDEBAR DESIGN
   ============================================ */

/* Page Header with Breadcrumb */
/* ============================================
   UPDATED PAGE HEADER - MODERN BANNER DESIGN
   ============================================ */
.page-header {
    padding: var(--spacing-4xl) var(--spacing-lg) var(--spacing-xl);
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #06b6d4 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/bg-small-banner.jpg') center/cover;
    /* opacity: 0.15; */
    z-index: 1;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: float 20s ease-in-out infinite;
}

.breadcrumb-nav {
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 0.5rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color var(--transition-base);
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: var(--text-white);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    padding: 0 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.page-header-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
}

.page-header-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    border-radius: var(--radius-full);
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-full);
}

.page-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.98);
    max-width: 850px;
    margin: var(--spacing-xl) auto 0;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', sans-serif;
}

/* Page Content Layout */
.page-content-section {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-primary);
}

.page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

/* Sidebar */
.page-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(13, 148, 136, 0.1);
    margin-bottom: var(--spacing-lg);
}

.sidebar-widget h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid rgba(13, 148, 136, 0.1);
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    font-size: 0.95rem;
}

.sidebar-menu li a:hover {
    background: rgba(13, 148, 136, 0.1);
    color: var(--color-primary);
    transform: translateX(5px);
}

.sidebar-menu li a i {
    font-size: 0.75rem;
    color: var(--color-primary);
    transition: transform var(--transition-base);
}

.sidebar-menu li a:hover i {
    transform: translateX(3px);
}

.sidebar-cta {
    background: var(--bg-gradient-1);
    color: var(--text-white);
}

.sidebar-cta h4 {
    color: var(--text-white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    font-size: 0.95rem;
}

.btn-sidebar {
    display: block;
    text-align: center;
    padding: 0.875rem 1.5rem;
    background: var(--text-white);
    color: var(--color-primary);
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-base);
}

.btn-sidebar:hover {
    background: var(--color-accent);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* Main Content */
.page-main-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3xl);
}

.content-block {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(13, 148, 136, 0.1);
    transition: all var(--transition-base);
}

.content-block:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 148, 136, 0.2);
}

.content-block-alt {
    background: var(--bg-secondary);
}

.content-block-cta {
    background: var(--bg-gradient-1);
    color: var(--text-white);
    text-align: center;
}

.content-block-header {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid rgba(13, 148, 136, 0.1);
}

.block-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(13, 148, 136, 0.2);
    line-height: 1;
    flex-shrink: 0;
}

.content-block-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.content-block-cta .content-block-header h2 {
    color: var(--text-white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.content-block-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.content-block-body p {
    margin-bottom: var(--spacing-md);
}

.content-text-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    align-items: center;
    
}

.content-text-image-reverse {
    direction: rtl;
}

.content-text-image-reverse > * {
    direction: ltr;
}

.content-text-part {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.content-image-part {
    position: relative;
}

.image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base);
}

.image-card:hover {
    transform: translateY(-5px);
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Services Grid Inner */
.services-grid-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.service-item-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(13, 148, 136, 0.1);
    transition: all var(--transition-base);
    text-align: center;
}

.service-item-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.service-item-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-gradient-1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-white);
    margin: 0 auto var(--spacing-md);
}

.service-item-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.service-item-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* CTA Block */
.cta-block-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-block-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
}

.cta-block-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-xl);
}

.btn-cta-block {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--text-white);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-block:hover {
    background: var(--color-accent);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.4);
}

/* Contact Info Bar */
.contact-info-bar {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-gradient-1);
    color: var(--text-white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Page Banner Section (Legacy Support) */
/* ============================================
   NEW MODERN BANNER DESIGN FOR INNER PAGES
   ============================================ */
.banner-start {
    padding: var(--spacing-4xl) var(--spacing-lg);
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #06b6d4 100%);
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    isolation: isolate;
}

.banner-start::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/bg-small-banner.jpg') center/cover;
    opacity: 0.15;
    z-index: 1;
}

.banner-start::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(180deg); }
}

.banner-text-top {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
    width: 100%;
}

.topbanner-text-center {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.topbanner-text-center::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    border-radius: var(--radius-full);
}

.topbanner-text-center h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: var(--spacing-lg);
    color: var(--text-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.03em;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.topbanner-text-center h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-full);
}

.topbanner-text-center p {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.98);
    max-width: 850px;
    margin: var(--spacing-xl) auto 0;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', sans-serif;
}

/* Content Sections */
.section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
}

.section.bg-gray-light {
    background: var(--bg-secondary);
}

.section.bg-dark-web-color {
    background: var(--bg-gradient-2);
    color: var(--text-white);
}

.bg-light-text h3 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: var(--spacing-lg);
    color: var(--color-primary);
    letter-spacing: -0.01em;
}

.bg-light-text h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-lg);
}
.core-setting h3 {
    margin-bottom: 50px;
}
.bg-light-text.today-clients p.para {
    min-height: 0;
}
.bg-light-text .para {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 12px;
    min-height: 0;
}
.we-are-an-expert {
    margin-top: 30px;
}
.we-offer-multi {
    margin-top: 30px;
}
.bg-light-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base);
    margin-top: 35px;
}
.we-offer-multi p.para {
    line-height: 1.8;
}
.bg-light-img:hover {
    transform: translateY(-5px);
}

.bg-light-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* About Us Specific */
.about-us-text h3 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
}

.about-us-text .para {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.about-us-list {
    list-style: none;
    padding-left: 0;
    margin: var(--spacing-lg) 0;
}

.about-us-list li {
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-xl);
    position: relative;
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-us-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.5rem;
}

/* List Styles */
.list-warp-line {
    margin: var(--spacing-lg) 0;
}

.list-warp-line ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-lg);
}

.list-warp-line ul li {
    padding: var(--spacing-lg);
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.list-warp-line ul li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--color-accent);
}

.list-warp-line ul li span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    margin-bottom: var(--spacing-sm);
}

.list-warp-line ul li {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    color: var(--text-secondary);
    min-height: 281px;
}

/* How May Help Section */
.how-may-help-text h3 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
}

.how-may-help-text .para {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.how-may-help-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.how-may-help-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Banner Description */
.banner-descrption {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-descrption h3 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
}

.banner-descrption .para {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
}

/* Footer Last Section */
.fotter-last {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.india-office h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
}

.india-office p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-sm);
}

.india-office p b {
    color: var(--color-accent);
}

/* Contact Page Styles */
.contact-section {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-secondary);
}

.contact-info h2,
.contact-form h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xl);
}

.contact-info p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.contact-info p strong {
    color: var(--color-primary);
    font-weight: 600;
}

.contact-info a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-base);
}

.contact-info a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.contact-info iframe {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: var(--spacing-lg);
    border: none;
    width: 100%;
    height: 300px;
}

.contact-form {
    /* background: var(--bg-primary); */
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    /* box-shadow: var(--shadow-lg); */
}
.reasons-to-outsource h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-lg);
}
.reasons-to-outsource h3 {
    font-size: 45px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.3;
}

.contact-form .form-control {
    border: 2px solid rgba(13, 148, 136, 0.2);
    border-radius: var(--radius-md);
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    transition: all var(--transition-base);
    background: var(--bg-primary);
}

.contact-form .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
    outline: none;
}

.btn-submit {
    background: var(--bg-gradient-1);
    color: var(--text-white);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    border: none;
    font-size: 1.1rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-gradient-3);
}

/* Confused About Section */
.confused-about h3 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
}

.confused-about .para {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

/* Responsive Styles for New Landing Page Layout */
@media (max-width: 1024px) {
    .split-hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .split-hero-image {
        order: -1;
    }
    
    .hero-main-img {
        height: 400px;
    }
    
    .floating-card {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .services-masonry {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .tile-large,
    .tile-featured,
    .service-tile:nth-child(2),
    .service-tile:nth-child(3),
    .service-tile:nth-child(5) {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .benefits-split-wrapper,
    .cta-split-wrapper {
        grid-template-columns: 1fr;
    }
    
    .benefits-split-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .split-hero {
        padding: var(--spacing-2xl) 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .split-hero-buttons {
        flex-direction: column;
    }
    
    .btn-split-primary,
    .btn-split-outline {
        width: 100%;
        text-align: center;
    }
    
    .banner-start {
        min-height: 350px;
        padding: var(--spacing-2xl) var(--spacing-md);
    }
    
    .page-header {
        min-height: 350px;
        padding: var(--spacing-2xl) var(--spacing-md) var(--spacing-lg);
    }
    
    .topbanner-text-center h1,
    .page-title {
        font-size: 2.5rem;
    }
    
    .topbanner-text-center p,
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: var(--spacing-2xl) 0;
    }
    
    .contact-form {
        padding: var(--spacing-xl);
    }
    
    .fotter-last {
        grid-template-columns: 1fr;
        padding: var(--spacing-lg);
    }
}

/* Responsive for New Inner Page Layout */
@media (max-width: 1024px) {
    .page-layout {
        grid-template-columns: 1fr;
    }
    
    .page-sidebar {
        position: relative;
        top: 0;
        order: -1;
        margin-bottom: var(--spacing-2xl);
    }
    
    .sidebar-widget {
        margin-bottom: var(--spacing-md);
    }
    
    .content-text-image {
        grid-template-columns: 1fr;
    }
    
    .content-text-image-reverse {
        direction: ltr;
    }
    
    .services-grid-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        min-height: 350px;
        padding: var(--spacing-2xl) var(--spacing-md) var(--spacing-lg);
    }
    
    .content-block {
        padding: var(--spacing-xl);
    }
    
    .content-block-header {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .block-number {
        font-size: 2rem;
    }
    
    .services-grid-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .banner-start {
        min-height: 300px;
        padding: var(--spacing-xl) var(--spacing-sm);
    }
    
    .page-header {
        min-height: 300px;
        padding: var(--spacing-xl) var(--spacing-sm) var(--spacing-md);
    }
    
    .topbanner-text-center h1,
    .page-title {
        font-size: 2rem;
    }
    
    .topbanner-text-center p,
    .page-subtitle {
        font-size: 1rem;
    }
    
    .topbanner-text-center h1::after,
    .page-title::after {
        width: 60px;
        height: 3px;
    }
    
    .section {
        padding: var(--spacing-xl) 0;
    }
    
    .bg-light-text h3,
    .how-may-help-text h3,
    .confused-about h3 {
        font-size: 1.5rem;
    }
    
    .list-warp-line ul li {
        padding: var(--spacing-md);
    }
    
  .contact-form {
        padding: var(--spacing-sm);
    }
    
    .banner-descrption {
        padding: var(--spacing-lg);
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .content-block {
        padding: var(--spacing-lg);
    }
    
    .content-block-header h2 {
        font-size: 1.5rem;
    }
}

/* Legacy Footer Support */
footer {
    background-color: var(--color-dark);
    padding: var(--spacing-3xl) 0 0;
    color: white;
}

.footer_logo {
    max-width: 150px;
    width: 100%;
    background: white;
    padding: 10px;
    border-radius: var(--border-radius-sm);
    transition: transform var(--transition-base);
}

.footer_logo:hover {
    transform: scale(1.05);
}

.social_link {
    display: flex;
    color: #fff;
    gap: var(--spacing-sm);
    align-items: center;
    font-size: 14px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.social_link a {
    color: #fff;
    width: 42px;
    height: 42px;
    display: flex;
    text-decoration: none;
    background-color: #009de4;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.social_link a:hover {
    background-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(233, 121, 0, 0.3);
}

.footer_contact ul li {
    display: flex;
    color: #ffffff;
    gap: 15px;
    align-items: flex-start;
    font-size: 14px;
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.footer_contact ul li i {
    margin-top: 4px;
    color: var(--orange);
    flex-shrink: 0;
}

.footer_contact ul {
    gap: 15px;
    display: flex;
    flex-direction: column;
}

.corporate h3,
.useful_links h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: white;
    font-weight: 600;
}

.corporate ul li,
.useful_links ul li {
    margin-bottom: 0.5rem;
}

.corporate ul li a,
.useful_links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.corporate ul li a:hover,
.useful_links ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.corporate ul li a i,
.useful_links ul li a i {
    font-size: 0.75rem;
    color: var(--orange);
}

.copyright_footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: var(--spacing-md) 0;
    margin-top: var(--spacing-2xl);
    text-align: center;
}

.copyright_footer p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Top Bar */
.container-fluid.top-box {
    background: #000;
    display: none;
    padding: 0.5rem 0;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    justify-content: flex-end;
    color: white;
    font-size: 0.875rem;
}

.social-icons span {
    margin-right: var(--spacing-sm);
}

.social-icons a {
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-base);
}

.social-icons a:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

/* Mega Menu Enhancements */
.mega-menu {
    position: absolute;
    width: 477px;
    z-index: 9999;
    top: 103%;
    opacity: 0;
    visibility: hidden;
    background: #fafafa;
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    padding: 20px;
    border-radius: var(--border-radius-md);
    border-top: 3px solid var(--color-primary);
    background-color: #ffffff;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    left: 50%;
    height: auto;
    margin: 0 auto;
    transform: translateX(-50%);
    text-align: left;
    align-items: stretch;
    gap: 15px;
}

ul.navbar-nav li.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.mega-menu-items {
    width: 214px;
}

.mega-menu h5 {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    padding: 0.5rem 0;
    color: #000000;
    transition: all var(--transition-base);
    margin-bottom: 0.5rem;
    position: relative;
}

.mega-menu h5:before {
    position: absolute;
    content: "";
    width: 164px;
    height: 2px;
    background-color: var(--color-primary);
    bottom: 3px;
}

.mega-menu h5 a {
    color: var(--color-primary);
    text-decoration: none;
}

.mega-menu-items ul {
    padding: 0;
    margin-top: 10px;
}

.mega-menu-items ul li a {
    display: inline-block;
    font-size: 0.875rem;
    line-height: 1.8;
    padding: 0.25rem 0;
    text-transform: capitalize;
    transition: all var(--transition-base);
    color: #565353;
    text-decoration: none;
}

.mega-menu-items ul li a:hover {
    color: #025980;
    transform: translateX(5px);
}

.mega-menu-items ul li a i {
    margin-right: 8px;
    font-size: 0.75rem;
}

/* ============================================
   RESPONSIVE DESIGN - NEW SECTIONS
   ============================================ */
@media (max-width: 1024px) {
    .hero-section-new {
        min-height: 600px;
    }
    
    .hero-img-desktop {
        display: none;
    }
    
    .hero-img-mobile {
        display: block;
    }
    
    .feature-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
    
    .feature-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-card-large {
        grid-row: span 1;
    }
    
    .benefits-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .benefits-image {
        order: -1;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .content-grid-reverse {
        direction: ltr;
    }
    
    .content-text {
        order: 2;
        text-align: center;
    }
    
    .content-image {
        order: 1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .content-text h2 {
        text-align: center;
    }
    
    .section-accent {
        margin: 0 auto var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .hero-section-new {
        min-height: 500px;
    }
    
    .hero-content-new {
        padding: var(--spacing-2xl) var(--spacing-md);
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }
    
    .feature-card {
        padding: var(--spacing-xl);
    }
    
    .showcase-card {
        margin-bottom: var(--spacing-lg);
    }
    
    .cta-card {
        padding: var(--spacing-2xl);
    }
    
    .hero-section {
        min-height: 500px;
    }
    
    .hero-content {
        min-height: 500px;
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .content-section {
        padding: var(--spacing-2xl) 0;
    }
    
    .content-text {
        padding: var(--spacing-md);
    }
    
    .social_link {
        justify-content: center;
        margin-top: var(--spacing-md);
    }
    
    .corporate,
    .useful_links {
        margin-top: var(--spacing-xl);
    }
}

@media (max-width: 576px) {
    .hero-section-new {
        min-height: 450px;
    }
    
    .hero-content-new {
        padding: var(--spacing-xl) var(--spacing-sm);
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .feature-card {
        padding: var(--spacing-lg);
    }
    
    .feature-content h3 {
        font-size: 1.5rem;
    }
    
    .card-content {
        padding: var(--spacing-lg);
    }
    
    .cta-card {
        padding: var(--spacing-xl);
    }
    
    .cta-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .hero-section {
        min-height: 400px;
    }
    
    .hero-content {
        min-height: 400px;
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-text p {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-md);
    }
    
    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }
    
    .content-section {
        padding: var(--spacing-xl) 0;
    }
    
    .content-text h2 {
        font-size: 1.5rem;
    }
    
    .content-text p {
        font-size: 0.95rem;
    }
}

/* Mobile Mega Menu */
@media (max-width: 991px) {
    .mega-menu {
        position: relative;
        width: 100%;
        z-index: 9999;
        top: 0;
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 10px;
        border-radius: 0;
        border-top: 0;
        background-color: #ffffff;
        box-shadow: none;
        transition: all var(--transition-base);
        left: 0;
        height: auto;
        margin: 0;
        transform: none;
        text-align: left;
        align-items: stretch;
        gap: 10px;
        flex-direction: column;
        display: none;
    }
    
    ul.navbar-nav li.nav-item .mega-menu.show {
        display: flex;
        visibility: visible;
        opacity: 1;
    }
    
    .nav-link::after {
        display: none;
    }
}

/* ============================================
   EXISTING STYLES (Maintained for Compatibility)
   ============================================ */
a{
    text-decoration: none;
    display: inline-block;
}

img{
    max-width: 100%;
    height: auto;
    display: inline-block;
}

li{
    list-style: none;
    font-family: inter;
}

h1,h2,h3,h4{
    color: var(--color-primary);
    /* font-family: "Poppins", sans-serif; */
      font-family: "Roboto", sans-serif;
}


h3 {
    font-size: 35px;
    font-weight: 700;
    line-height: 40px;
    color: #014361;
    margin-bottom: 20px;
}
.para {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: var(--para-color);
    text-align: justify;
}
.section {
    padding: 70px 0;
    background: white;
}
h4 {
    font-size: 22px;
    color: #014361;
    font-weight: 600;
}
.grid{
    display: grid;
    gap: 96px;
}
.grid-two-column{
    grid-template-columns: repeat(2, 1fr);
}
.list-warp-line-wrap ul li {
    padding: var(--spacing-lg);
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    color: var(--text-secondary);
    min-height: 180px;
    margin-bottom: 20px;
}
.bg-light-box p.para {
    margin-top: 20px;
}
.list-warp-line-wrap ul li span {
    font-size: 22px;
    font-weight: 600;
    color: #0d668e;
}
.btn {        
    transition: all 0.2s linear;
    border-radius: 10rem;
    background-color: var(--orange);
    color: var(--white-lilack);
    text-transform: capitalize;
    font-family: inter;   
    font-size: 16px;
    padding: 7px 19px;
}
.lets-go-text h3 {
    text-align: right;
    font-size: 40px;
    margin-bottom: 33px;
}
.lets-go-text p.para {
    text-align: right;
    padding-left: 50px;
}
.lets-go-text .top-line::before {
    width: 380px;
    left: 271px;
}  
.lets-go-text .top-line::after {
    left: 338px;
}
.btn-gray {
    font-size: 16px;
    padding: 9px 29px;
    transition: all 0.2s linear;
    border-radius: 10rem;
    background-color: var(--gray-btn);
    color: var(--color-dark);
    text-transform: capitalize;
    font-family: inter;
}
.hero-btn-one {
    cursor: pointer;
    align-items: center;
    text-decoration: none;
    transition: all .35s;
    border-radius: 100px;
    padding: 15px 26px;
    background: var(--yellow-500);
}

.social-icons span {
    color: var(--white-pure);
}
.hero-btn-one:hover, .hero-btn-one:active{
    background-color: var(--white-pure);
    border: 1px solid var(--color-dark);
}
.btn:hover, .btn:active{
    transform: scale(1.05);
    background-color: var(--yellow-500);
    color: var(--color-dark);
}
a.btn.btn-white {
    margin-right: 8px;
    
}

ul.about-us-list {
    text-align: left;
}
.about-us-text h3 {
    margin-bottom: 10px;
}
ul.about-us-list li {
    list-style: disc;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #014361;
}
.about-us-text p {
    text-align: left;
}
.bg-light-img h3 {
    text-align: left;
    margin-bottom: 15px;
}
h3.enabling-you {
    margin-top: 50px;
}

.container-fluid.top-box {
  background: black;
  display:none;
}
.top-bar {
  background-color: #0b0b0b;
  color: white;
  font-size: 14px;
  padding: 5px 0;
}
.top-bar i {
  margin-right: 6px;
}
.top-bar .contact-info span {
  margin-right: 20px;
}
.navbar {
  background-color: white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.navbar-brand img {
  height: 60px;
}
.nav-link {
  color: black !important;
  margin: 0 10px;
  position: relative;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #007bff !important;
}
.nav-link::before {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #007bff;
  transition: width 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}
.nav-link:hover::before {
  width: 100%;
}
.dropdown-menu {
  transition: all 0.3s ease;
}
.social-icons a {
  color: white;
  margin-left: 10px;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #007bff;
}

.submenu.megamenu.megamenu-column-4 {
    background: var(--color-primary);
    height: auto;
    margin: 0 auto;
    width: 998px;
    display: flex;
    padding: 24px;
}
.submenu-inner {
    line-height: 30px;
    padding: 0 0rem;
}

h4.submenu-title {
    display: inline-block;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    white-space: nowrap;
    text-transform: capitalize;
    transition: all 0.25s ease-in-out;
}
h4.submenu-title a {
    color: white;
}
ul.submenu-list {
    width: 200px;
    display: inline-block;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    white-space: nowrap;
    text-transform: capitalize;
    transition: all 0.25s ease-in-out;
    padding-left: 2px;
}
ul.submenu-list li.submenu-item {
    color: white;
}
ul.submenu-list li.submenu-item a.submenu-link {
    color: white;
    font-size: 13px;
}

ul.navbar-nav {
    position: relative;
}
.mega-menu {
    position: absolute;
    width: 500px;
    z-index: 9999;
    top: 103%;
    opacity: 0;
    visibility: hidden;
    background: #fafafa;
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    padding: 15px 4px;
    border-radius: 0.25rem;
    border-top: 3px solid var(--color-primary);
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease-in-out;
    left: 50%;
    height: auto;
    margin: 0 auto;
    transform: translateX(-50%);
    text-align: left;
    align-items: stretch;
    gap: 10px;
}

.mega-menu-items ul {
    padding: 0;
}
.mega-menu-items ul li a {
    display: inline-block;
    font-size: 14px;
    line-height: 11px;
    padding: 5px;
    text-transform: capitalize;
    transition: all 0.25s ease-in-out;
    color: #565353;
}
.mega-menu-items ul {
    padding: 0;
    margin-top: 10px;
}
i.fa-solid.fa-angle-right {
    margin-right: 8px;
}
ul.navbar-nav li.nav-item:hover .mega-menu {
opacity: 1;
visibility: visible;
top: 100%;
}
.mega-menu-items ul li a:hover {
    color: #025980;
}
.mega-menu h5 a {
    color: var(--color-primary);
}
.mega-menu-items {
    width: 229px;
}
.mega-menu h5 {
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 0.5rem 0;
    color: #000000;
    transition: all 0.3s ease;
    margin-bottom: 0;
    position: relative;
}

.mega-menu h5:before {
    position: absolute;
    content: "";
    width: 164px;
    height: 2px;
    background-color: var(--color-primary);
    bottom: 3px;
}









/* <!-- ================================================Hero-section-start=================================== --> */
.main-waper {
    position: relative;
}
.main-banner img.img-fluid {
    width: 100%;
}
img.img-fluid.new_mobile_img {
  display: none;
}
.banner-text-b {
    position: absolute;
    top: 250px;
    max-width: 650px;
    width: 100%;
    left: 178px;
}
.banner-text-b span {
    color: #0b0b0b;
    margin-bottom: 45px;
    display: block;
    position: relative;
    font-weight: 600;
	width: fit-content;
    font-size: 24px;
}


.banner-text-b h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 0;
    color: white;
    line-height: 51px;
}
.banner-text-b p {
    color: white;
    font-size: 17px;
    margin-top: 10px;
    margin-bottom: 40px;
}
.btn a {
  color: white;
}
.btn:hover, .btn:active {
    transform: scale(1.05);
    border: 2px solid orange;
    color: white;
}



/* <!-- ================================================Hero-section-end=================================== --> */


/* <!-- ================================================Why are businesses-start=================================== --> */

.contact-section {
      padding: 50px 0;
    }
    .contact-info h2, 
    .contact-form h2 {
      font-weight: bold;
      margin-bottom: 20px;
    }
    .contact-info p {
      margin: 10px 0;
      font-size: 16px;
    }
    .contact-info a {
      color: #ff4500;
      text-decoration: none;
    }
    .contact-info a:hover {
      text-decoration: underline;
    }
    iframe {
      border: 0;
      width: 100%;
      height: 300px;
      margin-top: 20px;
    }
  .btn-submit {
    background-color: var(--color-primary);
    color: #fff;
    font-weight: bold;
}
    .btn-submit:hover {
      background-color: #e03e00;
    }

.call-center-img img.img-fluid {
    width: 95%;
    border-radius: 10px;
}
.top-line {
    color: white;
    margin-bottom: 33px;
    display: block;
    position: relative;
    width: 95%;
}
.call-center-text-center span.top-line {
    margin-top: 33px;
    width: 100%;
}
.top-line::before {
    content: '';
    height: 3px;
    width: 100%;
    background: #dadada;
    transition: width 0.3s ease;
    position: absolute;
    left: 0;
}
.top-line::after {
    content: '';
    height: 10px;
    width: 30%;
    background: var(--orange);
    transition: width 0.3s ease;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.top-line::before {
    content: '';
    height: 3px;
    max-width: 100%;
    background: #dadada;
    transition: width 0.3s ease;
    position: absolute;
    bottom: 13px;
    right: 11px;
    width: 100%;
}
.section-bottom-line p.para {
    font-size: 18px;
}
.offshore-list-line {
    display: flex;
    gap: 150px;
    padding: 20px;
    line-height: 30px;
    border-radius: 10px;
    background: #f1f2f2;
}
.offshore-list ul li {
    list-style: disc;
}

.call-center-text h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0;
}
.bg-image {
  background-image: url(images/left-arrow-img.png);
  background-repeat: no-repeat;
  background-position: right;
}
.call-center-text-center h2.comman-heading {
    text-align: left;
}
.section-bottom-line {
    margin-top: 20px;
}
.section.banner-bottom-line {
    background: #e6eff3;
    padding: 20px 0;
}
.call-center-text-center p.para {
    text-align: left;
}
.call-center-text-center p {
    font-size: 17px;
    color: gray;
    line-height: 25px;
    text-align: left;
}
.how-may-help-text h3 {
    font-size: 40px;
    margin-top: 40px;
    text-align: left;
}   
.confused-about h3 {
    text-align: left;
}
.call-center-text {
    display: flex;
    align-items: center;
    height: 100%;
    padding-right: 60px;
}
.section.bg-gray {
    background: #f6f7fb;
    padding: 80px 0;
}
.side-banner {
  display: flex;
  align-items: end;
  justify-content: end;
  position: relative;
}

.banner-text {
    position: absolute;
    top: 161px;
    max-width: 850px;
    width: 100%;
    left: 294px;
    background: var(--bg-color);
    padding: 40px;
    border-radius: 12px;
}

.side-banner .top-line::before {
    content: '';
    height: 3px;
    max-width: 100%;
    background: #dadada;
    transition: width 0.3s ease;
    position: absolute;
    bottom: -6px;
    left: 0;
}
.side-banner .top-line::after {
    content: '';
    height: 10px;
    width: 50%;
    background: var(--orange);
    transition: width 0.3s ease;
    position: absolute;
    CONTAIN-INTRINSIC-BLOCK-SIZE: AUTO 100PX;
    left: 0;
    margin: 0 auto;
    top: 0px;
}
.banner-text h2 {
    font-size: 35px;
    line-height: 40px;
    font-weight: 700;
    letter-spacing: 0;
    color: white;
    margin-bottom: 17px;
}
.banner-text p {
  color: white;
}
.banner-text p {
  color: white;
  margin-bottom: 40px;
  font-size: 18px;
}
.main-banner span.top-line {
  margin-top: 27px;
}


.container-fluid.connet-wiht-customer {
  position: relative;
}
.container-fluid.connet-wiht-customer img {
  position: absolute;
  right: 0;
}
.call-center-text-center.connect-with-customer p {
  text-align: left;
}
.call-center-text-center.connect-with-customer h2 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 35px;
  letter-spacing: 1px;
}
.call-center-text-center.connect-with-customer {
  background: #05618a;
  padding: 35px;
  border-radius: 11px;
}

/* ====================================end============================================================================= */




.call-center-text.call-center-agent {
  align-items: center;
  max-width: 700px;
  margin: 0px auto;  
}
.call-center-text-center.call-center-agent-contant h2 {
    text-align: center;
}
.call-center-text-center.call-center-agent-contant p {
  text-align: left;
  padding-right: 50px;
}
.call-center-text-center.call-center-agent-contant .top-line::before {
    content: '';
    height: 3px;
    max-width: 93%;
    background: #dadada;
    transition: width 0.3s ease;
    position: absolute;
    bottom: 13px;
    left: 0;
}
.call-center-text-center.call-center-agent-contant .top-line::after {
    content: '';
    height: 10px;
    width: 30%;
    background: var(--orange);
    transition: width 0.3s ease;
    position: absolute;
    bottom: 10px;
    left: 0;
}
.call-center-text-center.call-center-agent-contant span.top-line {
    width: 100%;
}





/* <!-- ================================================call-center-service-end=================================== --> */

.bg-image-right {
    background: var(--back-color) url(images/write-arrow-img.png);
    background-repeat: no-repeat;
    background-position: left;
    
}
.call-center-img.leading-img img.img-fluid {
  width: 90%;
}

.subscribe-section {
  background-color: #003030;
  padding: 60px 20px;
}
.subscribe-box {
  background: linear-gradient(45deg, #15b8c1, #f79533);
  padding: 30px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  height: 200px;
}
.subscribe-box h4 {
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}
.subscribe-box p {
  color: white;
  margin: 0;
}
.subscribe-form {
  display: flex;
  width: 100%;
  max-width: 630px;
  margin-top: 0;
}
.subscribe-form input[type="email"] {
  border: none;
  border-radius: 50px 0 0 50px;
  padding: 16px 71px;
  flex: 1;
}
.subscribe-form button {
  border: none;
  background-color: #e8e8e8;
  color: black;
  border-radius: 0 50px 50px 0;
  padding: 10px 25px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.subscribe-form button:hover {
  background-color: #f0f0f0;
}
.subscirbe-wrper {
  display: flex
;
  align-items: center;
  width: 100%;
  justify-content: space-around;
}
.container-fluid.subscri-bg {
  background: var(--white-lilack);
  padding: 60px;
}
.subscribe-text h3 {
    font-size: 40px;
    margin: 0;
    color: white;
}




footer {
  background-color: var(--color-dark);
  padding: 50px 0 0;
  background-size: cover;
  background-image: url(im);
  background-repeat: repeat;
  background-position: center;
}

.copyright_footer {
  border-top: 1px solid #ccc;
  color: #fff;
  padding: 15px 0;
  margin-top: 50px;
}

.copyright_footer p {
  font-size: 13px;
  text-align: center;
}

.footer_logo {
  max-width: 150px;
  width: 100%;
  background: white;
  padding: 10px;
  border-radius: 8px;
}

.social_link {
  display: flex;
  color: #fff;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  justify-content: end;
}

.row.upperfooter {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.social_link a {
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex
;
  text-decoration: none;
  background-color: #009de4;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.footer_contact ul li {
    display: flex;
    color: #ffffff;
    gap: 15px;
    align-items: center;
    font-size: 14px;
}

.footer_contact ul {
  gap: 15px;
  display: grid;
}


.useful_link h3 {
  font-size: 24px;
  color: #fff;
  margin-left: 33px;
}

.useful_link ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.useful_link ul {
  display: grid;
  gap: 8px;
}
.content-block-body .content-text-part p {
    margin: 0;
}

.subscribe h3 {
  font-size: 24px;
  color: #fff;
}

.subscribe p {
  font-size: 14px;
  color: #ccc;
}

.subscribe form div {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #ccc;
  color: #ccc;
  gap: 10px;
  align-items: center;
  padding-bottom: 6px;
}

.subscribe form div input {
  background-color: transparent;
  border: navajowhite;
  width: 100%;
}
p.para.the-third-party {
    margin-top: 20px;
    padding: 20px 40px;
}
.bg-light-img.why-should-text h3 {
    margin-bottom: 10px;
}
.bg-light-img.why-should-text p.para {
    margin-bottom: 50px;
}

.why-should-text {
    margin-bottom: 50px;
}
.why-should-text h3 {
    margin-bottom: 10px !important;
}
.bg-light-text.chat-support-perks {
    padding: 20px;
    border: 1px solid #b6e2f0;
    border-radius: 10px;
}
.bg-light-text.chat-support-perks h3 {
    margin-bottom: 10px;
}
.bg-light-text.chat-support-perks {
    padding: 20px;
    border: 1px solid #014361;
    border-radius: 10px;
    margin-bottom: 30px;
}

.bg-light-img img.img-fluid {
    width: 100%;
}


.fotter-last {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: white;
    padding: 30px 0;
    border-radius: 10px;
}

.india-office h5 {
    font-size: 26px;
    font-weight: 700;
}
.india-office p {
    font-size: 24px;
    line-height: 24px;
    font-weight: 400;
}

/* =====================================faQ=css=========================== */
button.accordion-button.collapsed {
    background: #f1fdfc;
}
.accordion-header {
    margin-bottom: 0;
    background: #f1fdfc;
   
}
.accordion-item {
    padding-bottom: 20px;
    border: none;
}
.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 22px;
    font-weight: 500;
    color: #047167 !important;
    text-align: left;
    border-radius: 6px !important;
    overflow-anchor: none;
    border: none;
    transition: color .15s 
ease-in-out, background-color .15s 
ease-in-out, border-color .15s 
ease-in-out, box-shadow .15s 
ease-in-out, border-radius .15s 
ease;
}
.accordion-body ul li a {
  color: black;
  font-weight: 700;
}
.faq-section .accordion {
  width: 100%;
}

.accordion-button:not(.collapsed) {
  /* background-color: #c5e5d8;*/
  background-color: var(--secondary-text);
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:before {
    content: "";
    position: absolute;
    top: 30px;
    height: 2px;
    width: 1rem;
    background-color: black;
}
.accordion-button.collapsed:after {
    content: "";
    position: absolute;
    top: 23px;
    height: 1.0625rem;
    width: 0.125rem;
    border-style: none;
    background-color: black;
}

.faq-section .accordion-button h5 {
  /*   color: #7dbc9e; */
  color: var(--primary-text);
  margin-right: 13px;
}
.accordion-body {
    background-color: var(--secondary-text);
    border: 2px solid #e7f9f7;
}
/* button:focus:not(:focus-visible) {
    outline: 0;
} */

/* list */
ul {
  list-style-type: none;
  list-style-type: disc; /* Default bullet points for ul */
  margin-left: 20px;
}
ul li {
  margin-bottom: 5px;
}
.accordion-body ol {
  counter-reset: step-counter;
  list-style-type: none;
  padding-left: 0;
}

.accordion-body ol > li {
  counter-increment: step-counter; /* Increment custom counter */
  margin-bottom: 10px;
}

.accordion-body ol > li::before {
  content: "Steps " counter(step-counter) ": "; /* Custom prefix */
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  /*   .faq-section .accordion {
    width: 50%;
    margin: 0 auto;
  } */

  .accordion-button:before {
    right: 0.75rem;
  }

  .accordion-button.collapsed:after {
    right: 1.1875rem;
  }

  .faq-section .accordion-button h5 {
    margin-right: 0px;
  }
}
/* =========================faq=end====================================== */



































.banner-start {
    padding: 12px;
    background-image: url(./images/bg-small-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 324px;
    height: 100%;
}
.banner-text-top {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    text-align: center;
    text-shadow: 2px 3px 6px rgb(2 39 50);
}
.top-banner-img img {
    border-radius: 20px;
}
.banner-text-top p {
    font-size: 18px;
    font-weight: 500;
    max-width: 700px;
    line-height: 25px;
    color: white;
}
.banner-text-top h1 {
    font-size: 50px;
    color: white;
    font-weight: 600;
}
.bg-light-img img.img-fluid {
    border-radius: 20px;
}

.banner-descrption p.para {
    font-size: 20px;
    line-height: 27px;
    color: #424242;
}
.banner-descrption {
    border-left: 4px solid gray;
    padding: 24px;
    border-right: 4px solid gray;
    background: #f8f8f8;
  
}

.bg-gray-light {
    background: #f1f6f7;
}
.bg-dark-web-color {
    background: var(--color-primary);
}
section.section.bg-dark-web-color .banner-descrption {
    background: #005378;
}
section.section.bg-dark-web-color .banner-descrption {
    border: none;
}
section.section.bg-dark-web-color .banner-descrption h3 {
    color: white;
}
section.section.bg-dark-web-color .banner-descrption p.para {
    color: #d4d4d4;
    line-height: 32px;
    font-size: 18px;
}
p.para.bottom-para {
    margin-top: 20px;
    padding: 20px 40px;
}
.bg-light-img p.para {
    padding: 20px 40px;
    line-height: 1.8;
}
.box-white-shadow {
    min-height: 150px;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: rgb(193 205 207 / 92%) 0px 0px 10px 0px;
}
.based-on-artical {
    display: flex;
    gap: 18px;
}
.affordable-service.box-white-shadow-two {
    margin-bottom: 20px;
}
.affordable-service.box-white-shadow-two {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 30px;
}
.icon-for-text {
    min-width: 110px;
}
.box-text-white {
    border-left: 2px solid #dedede;
    padding-left: 20px;
}
.bg-light-img h3 {
    text-align: left;
    margin-bottom: 15px;
}
.box-white-shadow-two {
    min-height: 150px;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #dedede;
    background: #f4f4f49c;
}
.two-box-bottom {
    display: flex;
    gap: 40px;
}
.list-warp-line ul li span {
    font-size: 22px;
    font-weight: 600;
    color: #0d668e;
}
.list-warp-line ul li {
    margin-bottom: 20px;
}
.list-warp-line ul {
    padding: 0;
}
.list-line {
    text-align: left;
    margin-top: 24px;
    font-size: 18px;
    line-height: 22px;
}
.our-interactive-voice h4 {
    text-align: left;
    margin-top: 30px;
}

i.fa-solid.fa-caret-right {
    position: absolute;
    left: -28px;
    font-size: 20px;
}
.list-line ul li {
    position: relative;
}
.our-interactive-voice h4 {
    text-align: left;
    margin-top: 43px;
    margin-bottom: 0px;
    font-size: 30px;
    border: 1px solid #a59b9b;
    padding: 20px;
    border-radius: 10px;
}

.list-line.how-business-are ul li {
    font-weight: 600;
    font-size: 19px;
    margin-bottom: 3px;
    color: #055a81;
}
.list-line.how-business-are ul {
    margin-bottom: 23px;
    min-height: 157px;
}
.how-may-help-text.howmay-gap {
    margin-bottom: 20px;
}
.list-warp-line.improve-the-brand-img li {
    min-height: 200px;
}
.how-busness-are-revolutingzing {
    text-align: left;
    margin-top: 43px;
    border: 1px solid #a59b9b;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}
.how-busness-are-revolutingzing h4 {
    text-align: left;
    font-size: 30px;
}
.stay-aligned-with-core h4 {
    text-align: left;
    font-size: 30px;
    font-weight: 700;
}
p.para.para-box-text {
    padding: 12px;
}
img.img-fluid.new_mobile-there_img {
    display: none;
}

.afffordable-service {
    background: white;
    padding: 40px;
    border-radius: 10px;
    min-height: 519px;
    box-shadow: rgb(0 0 0 / 28%) 0px 7px 29px 0px;
}
h3.core-strenth {
    margin-bottom: 50px;
    font-size: 40px;
    line-height: 48px;
}
.afffordable-service img {
    width: 30%;
    margin-bottom: 20px;
    margin-bottom: 25px;
}
.afffordable-service h5 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 20px;
}
.afffordable-service:hover {
    transform: scale(1.05);
    transition: .5s ease;
}
.corporate, .useful_links {
    color: #fff;
}
.corporate h3, .useful_links h3 {
    font-size: 18px;
    margin-bottom: 0;
    color: white;
}
.corporate ul li, .useful_links ul li {
    margin-bottom: 5px;
}
.corporate ul li a, .useful_links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.corporate, .useful_links {
    color: #fff;
    max-width: 200px;
    width: 100%;
    margin: 0 auto;
    float: right;
}
.corporate ul, .useful_links ul {
    padding: 0;
}
button.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler-icon {
   width: 25px;
  height: 2px;
}

button.navbar-toggler {
    padding: 0;
    border: 0;
}



/*================================ responsive ==============================================*/


@media(max-width:1570px){
.banner-text-b h1 {
    font-size: 42px;

}

.call-center-text h2 {
 letter-spacing: 0; 
}
.call-center-text-center p {
    font-size: 18px;
}
.banner-text h2 {
    letter-spacing: 0;  
}
img.img-fluid.new_mobile-there_img {
    display: none;
}
.banner-text-b {
    position: absolute;
    top: 150px;
    max-width: 50%;
    width: 100%;
    left: 40px;
}
}



    








@media(max-width:1350px){
.banner-text h2 {
    font-size: 37px;
    line-height: 40px;
    letter-spacing: 0px;
    margin-bottom: 19px;
}
.call-center-text.call-center-agent {

    padding-left: 25px;
}
.banner-text {
  padding: 36px;
      left: 230px;
}
img.img-fluid.new_mobile-there_img {
    display: none;


}
    .banner-text-b h1 {
        font-size: 43px;
    }

    .banner-text-b {
        position: absolute;
        top: 126px;
        max-width: 49%;
        width: 100%;
        left: 48px;
    }
}









@media(max-width:1199px){
  .box-white-shadow {
    min-height: 199px;
}
    .call-center-text h2 {
        letter-spacing: 0;
        font-size: 30px;
    }
img.img-fluid.new_mobile-there_img {
    display: none;
}
.main-banner img.img-fluid {
    width: 100%;
}
.offshore-list-line {
    display: flex;
   gap: 9px;
    padding: 20px;
    line-height: 30px;
    border-radius: 10px;
    background: #f1f2f2;
    flex-wrap: wrap;
}
    .banner-text-b {
        position: absolute;
        top: 45px;
        max-width: 45%;
        width: 100%;
        left: 30px;
    }
 .banner-text {
        left: 169px;
    }
 img.img-fluid.new_mobile-there_img {
    display: none;
}

    .banner-text-b span {
        font-size: 13px;
    }
.banner-text-b span::after {
    height: 7px;
    bottom: -12px;
}
    .banner-text-b h1 {
        font-size: 42px;
   
    }
}


@media(max-width:1024px){

.main-waper .main-banner img.img-fluid.hero_img {
    display: none;
}

img.img-fluid.new_mobile_img {
    display: block;
}

    h3.core-strenth {
        font-size: 35px;
        margin-bottom: 25px;
    }
    .afffordable-service {
        min-height: 659px;
        padding: 30px;
    }

    .banner-text-b h1 {
        font-size: 36px;
        line-height: 39px;
    }

    .call-center-text h2 {
        margin-bottom: 18px;
        font-size: 30px;
    }
.top-line::after {
        right: 109px;
    }
.top-line::before {
        right: 6px;
       
    }
.banner-text {
 padding: 36px;
left: 97px;
}
img.img-fluid.new_mobile-there_img {
    display: none;
}


  .section {
    padding: 50px 0;    
}
.box-white-shadow {
        min-height: 200px;
    }
  .banner-text-top h1 {
    font-size: 38px;
 
}
    h3 {
        font-size: 26px;
        line-height: 31px;
    }
    .section {
        padding: 30px 0;
    }
.list-warp-line ul li span {
    font-size: 19px;

}
.call-center-text-center p {
    text-align: justify;
 
}
.call-center-text-center.call-center-agent-contant p {
      padding-bottom: 20px;
    text-align: justify;
        padding-right: 0px;
}
    img.img-fluid.new_mobile-there_img {
        display: block;
    }
    .banner-text-b {
        position: absolute;
        top: 70px;
        max-width: 650px;
        width: 90%;
        left: 5%;
    }
}


@media(max-width:991px){
    .afffordable-service {
        min-height: 0;
        padding: 30px;
    }
.afffordable-service img {
    width: 15%;
    margin-bottom: 20px;
}
    .afffordable-service {
        min-height: 0;
        padding: 30px;
        margin-bottom: 20px;
    }
.banner-text-b {
        position: absolute;
        top: 17px;
        max-width: 650px;
        width: 90%;
        left: 5%;
    }
    .banner-text-b p {

    margin-bottom: 24px;
}
.afffordable-service h5 {
    font-size: 33px;

}
.call-center-img img.img-fluid {
    width: 70%;
    display: block;
    margin: 0 auto;
}

h3.core-strenth {
        font-size: 35px;
        margin-bottom: 38px;
        line-height: 40px;
    }

    .top-line::after {
        right: 32px;
        width: 252px;
    }
    .top-line::before {
        right: 0;
        max-width: 100%;
    }

    .call-center-text h2 {
        font-size: 32px;
        text-align: center;
    }
.call-center-text-center {
    margin-top: 28px;
}
.call-center-text-center p {
    text-align: justify;
  }
.banner-descrption h3 {
    font-size: 35px;

}
.bg-light-text h3 {
    font-size: 35px; 
}
.how-may-help-text h3 {
    font-size: 35px;
}
    h3 {
        font-size: 32px;
        line-height: 38px;
    }
.bg-light-text {
    margin-bottom: 48px;

}
    .how-may-help-img.img-fluid img {
        display: block;
        margin: 20px auto;
    }
.banner-text-top h1 {
    font-size: 35px;
}
.banner-descrption p.para {
    font-size: 18px;   
}
.banner-start {
    min-height: 245px;
}   
.banner-text-top {
    min-height: 220px;  
}
.section {
    padding: 40px 0;
    
}
.list-line {
    display: flex;
    flex-direction: column;
}
.based-on-artical {
    display: flex;
    gap: 18px;
    flex-direction: column;
}
  p.para.para-box-text {
    margin: 0;
}
.list-line ul li {
      font-size: 16px;
}
i.fa-solid.fa-caret-right {
  
    left: -24px;
    font-size: 15px;
    top: 5px;
}
    .banner-text {
        padding: 36px;
        left: 64px;
    }
img.img-fluid.new_mobile-there_img {
    display: block;
}
.mega-menu {
    position: relative;
    width: 100%;
    z-index: 9999;
    top:0;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 1px 4px;
    border-radius:0;
    border-top: 0px solid #05618a;
    background-color: #ffffff;
    box-shadow: none;
    transition: all 0.25s ease-in-out;
    left: 20px;
    height: auto;
    margin: 0 auto;
    transform: none;
    text-align: left;
    align-items: stretch;
    gap: 10px;
    flex-direction: column;
}
/* ul.navbar-nav li.nav-item:hover .mega-menu { */
    /* opacity: 1; */
    /* visibility: visible; */
    /* top: 100%; */
	/* display:flex; */
/* } */
ul.navbar-nav li.nav-item .mega-menu {
    display: none;
}
ul.navbar-nav li.nav-item .mega-menu.show {
    display: flex;
	visibility: visible;
	opacity: 1;
}
/* ul.navbar-nav li.nav-item.submenu_link .mega-menu { */
        /* display: flex; */
        /* visibility: visible; */
        /* opacity: 1; */
/* } */

.nav-link::before
{
	display:none;
}
li.nav-item.submenu_link .mega-menu {
    display: block;
}


}
/*end 991*/






@media(max-width:928px){

    .section-first {
    background: #effdff;
    height: auto;
}
    .btn {
    font-size: 18px;   
}
.top-line::before {

    max-width: 100%;
}
    .main-banner img.img-fluid {
               margin: 0;
    } 

        .top-line::after {
        right: 00px;
    }
    .top-line::before {
        right: 0;
        width: 100%;
    }
    .call-center-text-center.call-center-agent-contant .top-line::before {
      width: 332px;   
}
.call-center-text-center.call-center-agent-contant .top-line::after {
        left: 0;
        width: 150px;
    }
    .banner-text {
        padding: 36px;
        left: 33px;
    }
img.img-fluid.new_mobile-there_img {
    display: block;
}
.call-center-img {
    align-items: center;
    display: flex;
}
    .call-center-img img.img-fluid {
        width: 70%;
    }
    .banner-text {
    top: 90px;
    max-width: 691px;
    width: 100%;  
}
.banner-text p {
    color: white;
    margin-bottom: 25px;
    font-size: 15px;
}
.container-fluid.subscri-bg {
     padding: 34px;
}
.subscirbe-wrper {
     flex-direction: column;
    gap: 20px;
    text-align: center;
}
.subscribe-text h3 {
    font-size: 30px;
    margin: 0;
    color: white;
}
.subscribe-box {
    padding: 18px;  
    height: 178px;
}
.subscribe-form input[type="email"] {
    border: none;
    border-radius: 30px 0 0 30px;
    padding: 8px 72px;
    flex: 1;
}
    .banner-text h2 {
        font-size: 37px;
        line-height: 40px;
        letter-spacing: 0px;
        margin-bottom: 9px;
    }

}




@media(max-width:767px){
.side-banner.offshore-call-center img.img-fluid {
    position: absolute;
    top: 0;
}
.corporate, .useful_links {
    float: left;
	padding-left: 35px;
}
.faq-section .accordion-button h5 {
    color: var(--primary-text);
    margin-left: 43px;
}
.accordion-button:before {
    left: 13px;
}
.main-waper {
    position: relative;
    min-height: 367px;
}
.main-banner {
    height: 367px;
}
.bannerMobile {
    display: none;
}
    .offshore-list-line {
          gap: 15px;      
    }	
    .call-center-text h2 {
        font-size: 30px;
    }
    .call-center-text-center.call-center-agent-contant h2 {
    text-align: center;
}
    .call-center-text-center.call-center-agent-contant p {
        text-align: justify;
        padding: 0px 10px;
        margin-bottom: 30px;
    }
    .call-center-text.call-center-agent {
    align-items: center;
    max-width: 560px;
    margin: 0px auto;
}
    .call-center-text-center.call-center-agent-contant .top-line::before {
        left: 0;
        width: 100%;
    }
     .call-center-text-center.call-center-agent-contant .top-line::after {
        left: 0;
        width: 252px;
    }
  .call-center-img img.img-fluid {
        width: 85%;
        margin-bottom: 25px;
    }
    .top-line::before {
        width: 100%;
    }
    .top-line::before {
     max-width: 100%;
   
}


      img.img-fluid.new_mobile-there_img {
        display: block;
        object-fit: fill;
        height: 100%;
    }
      .call-center-img {
      align-items: center;
      display: flex;
      justify-content: center;
    }
.banner-text {
    position: absolute;
    top: 154px;
    max-width: 700px;
    width: 100%;
    left: 294px;
    background: var(--bg-color);
    padding: 50px;
    border-radius: 12px;
}



.btn {
    font-size: 16px;  
}


      
    img.img-fluid.new_mobile_img {
        display: none;
    }


  .list-line ul li {
    font-size: 17px;
}
.affordable-service.box-white-shadow-two {
    margin-bottom: 25px; 
    flex-direction: column;
    gap: 6px;
}
.list-line {
    display: flex;
    flex-direction: column;
}
.based-on-artical {
    display: flex;
    gap: 18px;
    flex-direction: column;
}
.box-white-shadow-two {
    min-height: 150px;
    padding: 10px 15px;
    border-radius: 10px;
    border: 2px solid #dedede;
    background: #f4f4f49c;
}
.icon-for-text img {
    margin: 15px 20px;
}
.box-text-white {
    border-left: 0 solid #dedede;
    padding-left: 0;
    text-align: center;
}
.box-text-white h4 {
    font-size: 30px;
    font-weight: 700;
}
h3 {
        font-size: 29px;
        line-height: 35px;
    }
 .banner-start {
    min-height: 245px;
}   
.banner-text-top {
    min-height: 220px;  
}
.how-may-help-text h3 {
    margin-top: 30px;
}
.section {
    padding: 40px 0;    
}
  p.para.para-box-text {
    margin: 0;
}
.how-busness-are-revolutingzing {
    margin-top: 4px; 

}
.how-busness-are-revolutingzing h4 {
    text-align: left;
    font-size: 25px;
}
.list-line.how-business-are ul {
    margin-bottom: 2px;
}
.our-interactive-voice h4 {
    font-size: 23px;
    padding: 15px;  
}
.banner-text {
	max-width: 90%;
	width: 90%;
	left: 0;
	padding: 22px;
	border-radius: 12px;
	top: 20px;
	right: 0;
	margin: 0 auto;
	position: relative;
	min-height: 533px;
}
.fotter-last {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    flex-direction: column;
}
.india-office h5 {
    font-size: 20px;
}
.india-office p {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}
input.form-control.first-name {
    margin-bottom: 18px;
}





}





@media(max-width:576px){

    .banner-text-b h1 {
        font-size: 34px;
        line-height: 43px;
    }

    .section-first {
    padding: 30px 0;
}
}






@media(max-width:575px){
    .section-first {
        padding: 0px 0;
    }
 .lets-go-text h3 {
    text-align: right;
    font-size: 30px;
    margin-bottom: 33px;
}
.subscribe-form input[type="email"] {
        padding: 5px 41px;       
    }

.subscribe-text h3 {
        font-size: 20px;
        }

.subscribe-box p {
    font-size: 13px;
}
    .banner-text-b h1 {
        font-size: 24px;
        max-width: 470px;
        line-height: 28px;
    }

.banner-text-b p {
        color: white;
        font-size: 17px;
        margin-top: 16px;
        margin-bottom: 14px;
    }

    .banner-text h2 {
        font-size: 20px;
        line-height: 25px;
        letter-spacing: 0px;
        margin-bottom: 18px;
    }
    .banner-text p {
        color: white;
        margin-bottom: 21px;
        font-size: 16px;
        line-height: 24px;
    }
    .side-banner .top-line::before {
        width: 100%;
        bottom: -21px;
    }

.top-line::before {
        right: 36px;
        width: 100%;
    }

.call-center-text h2 {
        font-size:20px;
        text-align: center;
    }

    .top-line::after {
        right: 0;
        width: 150px;
    }

.subscribe form div {
    width: 100%;
    display: flex;
    border-bottom: 1px solid #ccc;
    color: #ccc;
    gap: 10px;
    align-items: center;
    padding: 16px;
}    

.social_link {
    display: flex;
    color: #fff;
    gap: 15px;
    align-items: center;
    font-size: 14px;
    justify-content: center;
    margin-top: 20px;
}


    .side-banner .top-line::after {
        width: 150px;
        bottom: 0;
        left: 0;
        top: 14px;
    }

     .call-center-text-center.call-center-agent-contant .top-line::before {
        left: 7px;
        width: 100%;
    }
    
    .call-center-text-center.call-center-agent-contant .top-line::after {
        left: 0;
        width: 150px;
    }
    .main-waper {
        position: relative;
        min-height: 290px;
    }
    .top-line {
        color: white;
        margin-bottom: 32px;
        display: block;
        position: relative;
        margin-top: -9px;
        width: 100%;
    }

.call-center-img img.img-fluid {
        width: 74%;
        margin-bottom: 25px;
    }
  .list-line {
    display: flex;
    flex-direction: column;
}
.how-busness-are-revolutingzing h4 {
    text-align: left;
    font-size: 25px;
}
.list-line.how-business-are ul {
    margin-bottom: 2px;
}

.based-on-artical {
    display: flex;
    gap: 2px;
    flex-direction: column;
}
.icon-for-text img {
    margin: 15px 20px;
    width: 90px;
}
  .box-text-white h4 {
        font-size: 25px;
        font-weight: 700;
    }
.section {
    padding: 40px 0;    
}
.stay-aligned-with-core h4 {
    font-size: 24px;
}

.banner-start {
    min-height: 245px;
}   
.banner-text-top {
    min-height: 220px;  
}
.banner-text-top p {
	font-size: 15px;
	line-height: 19px;
}
.banner-text-top h1 {
	font-size: 28px;
}
.banner-descrption p.para {
	font-size: 17px;
}
    h3 {
        font-size: 25px !important;
        line-height: 32px !important;
    }
h3.core-strenth
 {
	font-size: 22px;
	line-height: 27px;
}
.afffordable-service h5
 {
        font-size: 26px;
    }
    .section {
        padding: 40px 12px;
    }
.para {
        font-size: 16px;
    }
.banner-start {
	min-height: 175px;
}
input.form-control.firstname {
    margin-bottom: 16px;
}
	.banner-text-top {
	min-height: 150px;
}
.banner-descrption {
	padding: 15px;
}
.how-busness-are-revolutingzing h4 {
    font-size: 25px;
    font-weight: 600;
}
    .how-may-help-text h3 {
        margin-top: 10px;
        font-size: 20px;
        line-height: 25px;
    }
  p.para.para-box-text {
    margin: 0;
}
    .banner-descrption p.para {
        font-size: 16px !important;
        line-height: 30px !important;
    }
    .list-warp-line-wrap ul li {
    padding: 19px;
        
}
.box-white-shadow { 
    padding: 10px 16px;  
    line-height: 25px;
}
.bg-light-img p.para {
    padding: 5px 24px;
   
}
.call-center-text-center p {
	text-align: justify;
	font-size: 16px;
	line-height: 25px;
}
.social_link li:first-child
 {
    grid-column: span 5;
}
.call-center-text {
	padding: 0 9px;
	border-radius: 10px;
}  
.social_link {
	padding: 0 0 0 15px;
	grid-template-columns: repeat(5, 1fr);
	display: grid;
}
.footer_logo {
    margin-left: 15px;
}
.corporate, .useful_links {
	float: left;
	padding-left: 15px;
}
.footer_contact ul {
    padding-left: 15px;
}
.contact-section {
    padding: 50px 20px;
}
input.form-control.first-name {
    margin-bottom: 18px;
}
.contact-info {
    padding: 0 3px;
}




}
 /*end 575*/

 @media(max-width:400px)
 {
.section.banner-bottom-line {
    background: #e6eff3;
    padding: 40px 0;
}
.call-center-text {
    padding: 2px;
    border-radius: 10px;
}
.contact-info-item {
    gap: 10px;
    padding: 10px;
}
.contact-info-bar {
    padding: var(--spacing-xl) 0;
}
.contact-info-grid {
    gap: 20px;
}
.page-subtitle {
    margin: 0;   
}
.page-content-section {
        padding: 35px 0px;
    }

.page-sidebar {
        margin-bottom: 10px;
    }
.sidebar-widget {
    padding: 20px 26px;
   
}
.sidebar-menu li a {
    padding: 5px;  
}
.sidebar-widget h4 {
    margin-bottom: 10px;
  
}
.page-layout {
    gap: 1px;
   
}
.page-main-content {
    gap: 40px;
}
.service-item-card {

    padding: 2px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.05);
    border: 0px solid rgba(13, 148, 136, 0.1);
   
}
.split-hero-text {
    font-size: 1rem;
}
.section-subtitle {
    font-size: 1rem;
}
.accordion-button:before {
    left: 13px;
}
.service-tile p {
    font-size: 1rem;

}
.cta-split-content p {
    font-size: 1rem;

}
.feature-check {
    width: 25px;
    height: 25px;
}
.split-hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
}
.service-item-card p {
    font-size: 1rem; 
}
.cta-block-content p {
    font-size: 1rem;
 
}
.how-may-help-text .para {
    font-size: 1rem;

}
.faq-section .accordion-button h5 {
    margin-left: 24px;
}
.list-warp-line-wrap ul {
    margin: 0;
    padding: 0;
}
    .how-may-help-img.img-fluid img {
        display: block;
        margin: 0px auto;
    }

.how-may-help-text .para {
    margin-top: 20px;
}
    .list-line.how-business-are ul {
        margin-bottom: 2px;
        margin: 0;
    }
    .bg-light-text {
        margin-bottom: 0;
    }






























 }








