@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

/* ==========================================================================
   EXUBERANT IRELAND — UNIFIED THEME
   Primary: Deep Navy #0b1b6f | Accent: Emerald #169b62 | Gold: #ffd400
   All sections use navy or white — green only as accent, never as bg
   ========================================================================== */

:root {
    --ie-primary:       #0b1b6f;
    --ie-primary-dark:  #07124c;
    --ie-deep-navy:     #060b1a;
    --ie-green:         #169b62;
    --ie-green-light:   #22bf76;
    --ie-gold:          #ffd400;
    --ie-white:         #ffffff;
    --ie-bg:            #f4f6fb;
    --ie-border:        #e2e8f0;
    --ie-shadow:        0 8px 28px rgba(7,18,76,0.10);
    --ie-radius:        12px;
    --transition:       all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Nunito', sans-serif;
    color: #1e293b;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

.container-xl {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

.ie-section { padding: 96px 0; }
.text-center { text-align: center; }
.text-white  { color: #fff !important; }
.text-gold   { color: var(--ie-gold) !important; }
.text-slate  { color: rgba(255,255,255,0.60) !important; }
.text-green  { color: var(--ie-green-light) !important; }

/* ─── REUSABLE SECTION HEADER ─── */
.ie-heading { max-width: 720px; margin: 0 auto 52px; }
.ie-heading h2 {
    font-size: 2.4rem; font-weight: 800;
    color: var(--ie-primary); margin-bottom: 12px;
}
.ie-heading p { font-size: 15.5px; color: #64748b; line-height: 1.65; }

/* pill label on white bg */
.ie-heading .sub-title,
.sub-title {
    display: inline-block; padding: 5px 16px;
    background: rgba(11,27,111,0.07); color: var(--ie-primary);
    border-radius: 30px; font-size: 12px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px;
}
/* pill label on dark bg */
.sub-title.text-gold {
    background: rgba(255,212,0,0.15);
    border: 1px solid rgba(255,212,0,0.30);
    color: var(--ie-gold) !important;
}
.sub-title.text-green {
    background: rgba(34,191,118,0.14);
    border: 1px solid rgba(34,191,118,0.30);
    color: var(--ie-green-light) !important;
}
/* white-bg headings inside dark sections */
.ie-heading.dark h2 { color: #fff; }
.ie-heading.dark p  { color: rgba(255,255,255,0.62); }

/* ══════════════════════════════════════════════
   HERO  (keep exactly as designed — perfect)
══════════════════════════════════════════════ */
.ie-hero-centered {
    padding: 50px 0 120px;
    background: linear-gradient(135deg, #08134c 0%, #112b8f 55%, #0f6b44 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* subtle radial glow shapes */
.ie-hero-centered::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(22,155,98,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 85% 15%, rgba(17,43,143,0.35) 0%, transparent 65%);
    pointer-events: none;
}
.ie-hero-center-content { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }
.ie-hero-centered h1 {
    font-size: 3.1rem; font-weight: 900; line-height: 1.18; margin-bottom: 22px;
}
.ie-hero-centered p {
    font-size: 17.5px; line-height: 1.65;
    color: rgba(255,255,255,0.88); margin-bottom: 36px;
}

.ie-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50px; font-weight: 700; font-size: 13.5px; margin-bottom: 26px;
}
.pulse-dot {
    width: 8px; height: 8px; background: var(--ie-green-light);
    border-radius: 50%; animation: iePulse 2s infinite;
}
@keyframes iePulse {
    0%   { box-shadow: 0 0 0 0   rgba(34,191,118,0.7); }
    70%  { box-shadow: 0 0 0 8px rgba(34,191,118,0);   }
    100% { box-shadow: 0 0 0 0   rgba(34,191,118,0);   }
}

.ie-btns { display: flex; gap: 14px; justify-content: center; margin-bottom: 40px; }
.ie-btn-main {
    background: var(--ie-gold); padding: 15px 36px; border-radius: 50px;
    font-weight: 800; color: #0b1b6f;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none; font-size: 15px; transition: var(--transition);
}
.ie-btn-main:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,212,0,0.35); }
.ie-btn-outline {
    padding: 15px 36px;
    border: 2px solid rgba(255,255,255,0.30);
    border-radius: 50px; color: #fff; font-weight: 700;
    font-size: 15px; text-decoration: none; transition: var(--transition);
}
.ie-btn-outline:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.60); }

.ie-trust { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ie-trust span {
    padding: 7px 16px; font-size: 13px; font-weight: 700;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 40px; color: rgba(255,255,255,0.90);
}

/* ══════════════════════════════════════════════
   SERVICES  — deep navy bg with shapes
══════════════════════════════════════════════ */
.ie-services-premium-backdrop {
    background: var(--ie-primary-dark);
    position: relative; padding: 96px 0; overflow: hidden;
}
/* geometric shape decorations */
.ie-services-premium-backdrop::before {
    content: '';
    position: absolute; top: -120px; right: -120px;
    width: 420px; height: 420px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%; pointer-events: none;
}
.ie-services-premium-backdrop::after {
    content: '';
    position: absolute; bottom: -80px; left: -80px;
    width: 300px; height: 300px;
    background: rgba(22,155,98,0.07);
    border-radius: 50%; pointer-events: none;
}

.services-premium-matrix {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
    position: relative; z-index: 1;
}
.premium-srv-card.style-white-premium {
    background: rgba(255,255,255,0.96) !important;
    border-radius: var(--ie-radius); padding: 32px 22px;
    position: relative; border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
    transition: var(--transition); color: #1e293b !important;
}
.premium-srv-card.style-white-premium:hover {
    transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.28);
    border-color: rgba(22,155,98,0.25);
}
.premium-srv-card.style-white-premium h3 {
    font-size: 16.5px; font-weight: 800; color: var(--ie-primary); margin-bottom: 10px;
}
.premium-srv-card.style-white-premium p {
    font-size: 13.5px; line-height: 1.62; color: #475569; margin-bottom: 18px;
}
.premium-srv-card.style-white-premium .srv-link {
    font-size: 13.5px; font-weight: 700; color: var(--ie-green); text-decoration: none;
}
.premium-srv-card.style-white-premium .srv-link:hover { color: var(--ie-primary); }
.premium-srv-card .popular-tag {
    position: absolute; top: 14px; right: 14px;
    background: var(--ie-gold); color: var(--ie-primary);
    font-size: 9.5px; font-weight: 900; padding: 3px 10px;
    border-radius: 4px; text-transform: uppercase; letter-spacing: 0.4px;
}
.srv-icon-wrap { font-size: 28px; margin-bottom: 14px; display: block; }

/* ══════════════════════════════════════════════
   FREE TRIAL BAR — navy bg, green left accent
══════════════════════════════════════════════ */
.ie-trial-bar-new {
    background: var(--ie-primary);
    padding: 56px 0; position: relative; overflow: hidden;
}
.ie-trial-bar-new::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: var(--ie-green-light);
}
.ie-trial-bar-new::after {
    content: '';
    position: absolute; right: -100px; top: -100px;
    width: 360px; height: 360px;
    border: 1px solid rgba(255,255,255,0.05); border-radius: 50%;
    pointer-events: none;
}

.trial-bar-new-grid {
    display: grid; grid-template-columns: 1.5fr 0.5fr; gap: 50px; align-items: center;
}
.trial-bar-left { display: flex; align-items: flex-start; }
.trial-circle-deco { display: none; }
.trial-bar-text h3 {
    font-size: 24px; font-weight: 900; color: #fff; margin-bottom: 10px;
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap; line-height: 1.25;
}
.ie-flag-tag {
    display: inline-block; background: var(--ie-green);
    color: #fff; font-size: 11px; font-weight: 900;
    padding: 2px 9px; border-radius: 4px; letter-spacing: 1px;
}
.trial-bar-text p { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 18px; }
.trial-check-list { display: flex; flex-direction: column; gap: 8px; }
.trial-check-list span {
    display: flex; align-items: center; gap: 8px;
    font-size: 13.5px; font-weight: 700; color: rgba(255,255,255,0.88);
}
.trial-check-list svg { flex-shrink: 0; stroke: var(--ie-green-light); }

.trial-bar-right { display: flex; flex-direction: column; gap: 10px; }
.trial-btn-white {
    background: var(--ie-gold); color: var(--ie-primary);
    padding: 14px 30px; border-radius: 8px; font-weight: 800; font-size: 14.5px;
    text-decoration: none; display: block; text-align: center;
    transition: var(--transition); width: 100%;
}
.trial-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,212,0,0.30); }
.trial-btn-outline-white {
    border: 2px solid rgba(255,255,255,0.28); color: #fff;
    padding: 13px 30px; border-radius: 8px; font-weight: 700; font-size: 14px;
    text-decoration: none; display: block; text-align: center;
    transition: var(--transition); width: 100%;
}
.trial-btn-outline-white:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.08); }
.trial-pricing-note { font-size: 12px; color: rgba(255,255,255,0.55); text-align: center; }
.trial-pricing-note strong { color: rgba(255,255,255,0.85); }

/* ══════════════════════════════════════════════
   PROCESS — light bg (#f4f6fb)
══════════════════════════════════════════════ */
.ie-process-section {
    padding: 96px 0;
    background: var(--ie-bg);
    position: relative; overflow: hidden;
}
.ie-process-section::before {
    content: '';
    position: absolute; top: -80px; right: 10%;
    width: 280px; height: 280px;
    border: 1px solid rgba(11,27,111,0.06); border-radius: 50%;
    pointer-events: none;
}

.process-steps-track {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 22px;
    position: relative; margin-bottom: 48px;
}
.process-line {
    position: absolute; top: 36px;
    left: calc(12.5% + 20px); right: calc(12.5% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--ie-primary) 0%, var(--ie-green) 100%);
    z-index: 0;
}
.process-line::after {
    content: ''; position: absolute; top: -3px; right: -6px;
    width: 8px; height: 8px; background: var(--ie-green); border-radius: 50%;
}

.process-step-node {
    display: flex; flex-direction: column; align-items: center;
    position: relative; z-index: 1;
}
.step-num-circle {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--ie-primary);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(11,27,111,0.22); flex-shrink: 0;
    transition: var(--transition);
}
.process-step-node:hover .step-num-circle {
    background: var(--ie-green); transform: scale(1.08);
}
.step-num-circle span { font-size: 17px; font-weight: 900; color: #fff; }

.step-content-card {
    background: #fff; border: 1px solid var(--ie-border);
    border-radius: 14px; padding: 26px 20px; text-align: center;
    width: 100%; box-shadow: var(--ie-shadow); transition: var(--transition);
}
.process-step-node:hover .step-content-card {
    border-color: var(--ie-green);
    box-shadow: 0 12px 32px rgba(22,155,98,0.12); transform: translateY(-3px);
}
.step-icon-wrap { font-size: 26px; margin-bottom: 10px; display: block; }
.step-content-card h4 {
    font-size: 15.5px; font-weight: 800; color: var(--ie-primary); margin-bottom: 8px;
}
.step-content-card p { font-size: 13px; color: #64748b; line-height: 1.6; margin-bottom: 14px; }
.step-time-badge {
    display: inline-block; background: rgba(11,27,111,0.07); color: var(--ie-primary);
    font-size: 10.5px; font-weight: 800; padding: 4px 12px;
    border-radius: 20px; text-transform: uppercase; letter-spacing: 0.3px;
}

.process-cta-row { display: flex; gap: 16px; justify-content: center; align-items: center; }
.ie-btn-process-outline {
    padding: 14px 32px; border: 2px solid var(--ie-primary); border-radius: 50px;
    color: var(--ie-primary); font-weight: 700; font-size: 14.5px;
    text-decoration: none; transition: var(--transition);
}
.ie-btn-process-outline:hover { background: var(--ie-primary); color: #fff; }

/* ══════════════════════════════════════════════
   TEAM PROFILES — white bg
══════════════════════════════════════════════ */
.ie-team-profiles { background: #ffffff; padding: 96px 0; }

.team-profiles-grid {
    display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; margin-top: 48px;
}
.profile-card {
    background: #fff; border: 1px solid var(--ie-border); border-radius: 16px;
    padding: 32px 18px; text-align: center;
    box-shadow: 0 2px 12px rgba(7,18,76,0.05);
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    display: flex; flex-direction: column; align-items: center;
    position: relative; overflow: hidden;
}
/* top green bar */
.profile-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--ie-primary); transition: var(--transition);
}
.profile-card:hover { transform: translateY(-6px); border-color: rgba(11,27,111,0.14); box-shadow: var(--ie-shadow); }
.profile-card:hover::before { background: var(--ie-green-light); }

.avatar-box {
    width: 88px; height: 88px; border-radius: 50%; overflow: hidden;
    margin-bottom: 18px; background: var(--ie-bg);
    border: 2px solid var(--ie-border);
    transition: transform 0.35s ease;
}
.profile-card:hover .avatar-box { transform: scale(1.06); }
.avatar-box img { width: 100%; height: 100%; object-fit: cover; }
.profile-card h3 { font-size: 15.5px; font-weight: 800; color: var(--ie-primary); margin-bottom: 5px; }
.profile-card p  { font-size: 12.5px; color: #64748b; font-weight: 600; margin-bottom: 22px; }
.hire-now-btn {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--ie-gold); color: var(--ie-primary);
    font-size: 12.5px; font-weight: 800;
    padding: 9px 22px; border-radius: 50px; text-decoration: none;
    transition: var(--transition); width: 85%; margin-top: auto;
}
.hire-now-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(255,212,0,0.30); }

/* ══════════════════════════════════════════════
   TESTIMONIALS — deep navy
══════════════════════════════════════════════ */
.ie-brand-navy-testimonials-wrapper {
    background: var(--ie-primary-dark);
    padding: 96px 0; position: relative; overflow: hidden;
}
.ie-brand-navy-testimonials-wrapper::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 320px; height: 320px;
    border: 1px solid rgba(255,255,255,0.05); border-radius: 50%;
    pointer-events: none;
}
.testimonials-carousel-container { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.owl-carousel-emulated { display: flex; gap: 24px; }
.carousel-review-card {
    background: #ffffff; color: #1e293b;
    padding: 38px 32px; border-radius: var(--ie-radius);
    position: relative; box-shadow: 0 8px 30px rgba(0,0,0,0.22);
    flex: 1; display: none;
}
.carousel-review-card.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity:0; transform:scale(0.98); } to { opacity:1; transform:scale(1); } }

.quote-mark { font-size: 56px; color: rgba(11,27,111,0.07); position: absolute; top: 8px; right: 22px; font-family: serif; line-height:1; }
.star-rating { color: #ffb100; font-size: 13.5px; margin-bottom: 12px; }
.rating-num { background: #fff4d9; color: #a06a00; font-size: 11px; font-weight: 700; padding: 2px 6px; border-radius: 4px; margin-left: 6px; }
.carousel-review-card p { font-size: 14.5px; line-height: 1.65; color: #475569; margin-bottom: 22px; font-style: italic; }
.reviewer-meta { display: flex; align-items: center; gap: 12px; border-top: 1px solid #f1f5f9; padding-top: 14px; }
.reviewer-avatar {
    width: 40px; height: 40px; background: var(--ie-primary);
    color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px;
}
.reviewer-details h4 { font-size: 14.5px; font-weight: 800; color: var(--ie-primary); margin: 0; }
.reviewer-details p  { font-size: 12px; color: #64748b; margin: 0; font-style: normal; }

.carousel-navigation { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 38px; }
.nav-arrow {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15); color: #fff;
    width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center; font-size: 16px;
    transition: var(--transition);
}
.nav-arrow:hover { background: var(--ie-gold); color: var(--ie-primary); border-color: var(--ie-gold); }
.nav-dots { display: flex; gap: 8px; }
.nav-dots .dot { width: 8px; height: 8px; background: rgba(255,255,255,0.20); border-radius: 50%; cursor: pointer; transition: var(--transition); }
.nav-dots .dot.active { background: var(--ie-gold); width: 22px; border-radius: 10px; }

/* ══════════════════════════════════════════════
   FAQ — light bg
══════════════════════════════════════════════ */
.ie-light-elegant-bg { background: var(--ie-bg); }
.faq-split-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 50px; }

.faq-sidebar-info .sidebar-tag {
    display: inline-block; font-size: 11.5px; font-weight: 800;
    color: var(--ie-primary); background: rgba(11,27,111,0.08);
    padding: 4px 12px; border-radius: 4px;
    text-transform: uppercase; margin-bottom: 14px;
}
.faq-sidebar-info h2 { font-size: 2.2rem; font-weight: 800; color: var(--ie-primary); margin-bottom: 14px; }
.faq-sidebar-info p  { font-size: 15px; color: #475569; line-height: 1.65; margin-bottom: 26px; }
.faq-contact-btn {
    display: inline-flex; align-items: center;
    border: 2px solid var(--ie-primary); color: var(--ie-primary);
    padding: 12px 28px; border-radius: 50px;
    font-weight: 700; font-size: 14.5px; text-decoration: none; transition: var(--transition);
}
.faq-contact-btn:hover { background: var(--ie-primary); color: #fff; }

.faq-accordion-rows { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: #fff; border: 1px solid var(--ie-border);
    border-radius: 8px; overflow: hidden; transition: var(--transition);
}
.faq-item.active { border-color: var(--ie-primary); box-shadow: var(--ie-shadow); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 19px 22px; font-size: 15px; font-weight: 700; color: var(--ie-primary);
    background: none; border: none; text-align: left; cursor: pointer;
    font-family: 'Nunito', sans-serif;
}
.toggle-status { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.toggle-status::before { content: ""; position: absolute; top: 6px; left: 0; width: 14px; height: 2px; background: var(--ie-primary); }
.toggle-status::after  { content: ""; position: absolute; top: 0; left: 6px; width: 2px; height: 14px; background: var(--ie-primary); transition: var(--transition); }
.faq-item.active .toggle-status::after { transform: rotate(90deg); opacity: 0; }
.faq-answer p { padding: 0 22px 18px; font-size: 14px; line-height: 1.65; color: #475569; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media(max-width:1200px) {
    .team-profiles-grid        { grid-template-columns: repeat(3,1fr); }
    .services-premium-matrix   { grid-template-columns: repeat(2,1fr); }
    .why-cards-matrix          { grid-template-columns: repeat(2,1fr); }
    .why-card-large            { grid-column: span 2; }
}
@media(max-width:992px) {
    .trial-bar-new-grid,
    .cta-green-inner,
    .faq-split-grid            { grid-template-columns: 1fr; gap: 28px; }
    .process-steps-track       { grid-template-columns: repeat(2,1fr); }
    .process-line              { display: none; }
    .why-cards-matrix          { grid-template-columns: 1fr 1fr; }
    .why-card-large            { grid-column: span 2; }
    .team-profiles-grid        { grid-template-columns: repeat(3,1fr); }
}
@media(max-width:768px) {
    .ie-hero-centered h1       { font-size: 2.1rem; }
    .identity-mega-heading     { font-size: 2rem; }
    .ie-heading h2             { font-size: 1.9rem; }
    .team-profiles-grid        { grid-template-columns: repeat(2,1fr); }
    .services-premium-matrix   { grid-template-columns: 1fr; }
    .process-steps-track       { grid-template-columns: 1fr; }
    .why-cards-matrix          { grid-template-columns: 1fr; }
    .why-card-large            { grid-column: span 1; }
    .india-ireland-connect     { padding: 20px; }
    .process-cta-row           { flex-direction: column; align-items: center; }
}
@media(max-width:480px) {
    .team-profiles-grid        { grid-template-columns: 1fr; }
    .hire-now-btn              { width: 100%; }
    .ie-btns                   { flex-direction: column; align-items: center; }
    .ie-trust                  { flex-wrap: wrap; justify-content: center; }
    .b2b-notice-strip          { flex-direction: column; }
    .connect-pill              { padding: 10px 14px; gap: 8px; }
}

/* ══════════════════════════════════════════════
   WHO WE ARE — REDESIGNED (eye-catching)
══════════════════════════════════════════════ */
.ie-identity-section {
    padding: 96px 0 80px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}
/* diagonal stripe bg decoration */
.ie-identity-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 480px; height: 480px;
    background: radial-gradient(ellipse at top right, rgba(11,27,111,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.ie-identity-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 360px; height: 360px;
    background: radial-gradient(ellipse at bottom left, rgba(22,155,98,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.identity-headline-block {
    text-align: center; max-width: 820px; margin: 0 auto 56px;
    position: relative; z-index: 1;
}
.identity-eyebrow {
    display: inline-block; padding: 5px 18px;
    background: rgba(11,27,111,0.07); color: var(--ie-primary);
    border-radius: 30px; font-size: 12px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 18px;
}
.identity-mega-heading {
    font-size: 2.9rem; font-weight: 900; color: var(--ie-primary);
    line-height: 1.15; margin-bottom: 20px;
}
.identity-mega-heading .highlight-green {
    color: var(--ie-green); position: relative; display: inline-block;
}
.identity-mega-heading .highlight-green::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ie-green), var(--ie-green-light));
    border-radius: 2px;
}
.identity-subtext {
    font-size: 16px; color: #475569; line-height: 1.7; margin-bottom: 0;
}
.identity-subtext strong { color: var(--ie-primary); }



/* ── B2B + Connect in 2-col grid ── */
.identity-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    max-width: 900px;
    margin: 0 auto;
    position: relative; z-index: 1;
}
.b2b-notice-strip {
    display: flex; align-items: flex-start; gap: 16px;
    background: var(--ie-primary);
    border-radius: 12px; padding: 28px 26px;
    text-align: left; height: 100%;
}
.b2b-icon {
    flex-shrink: 0; width: 46px; height: 46px;
    background: rgba(255,255,255,0.15); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; color: #fff;
}
.b2b-notice-strip p { font-size: 14px; color: rgba(255,255,255,0.80); line-height: 1.65; }
.b2b-notice-strip p strong { color: #fff; }

.india-ireland-connect {
    background: var(--ie-bg);
    border: 1px solid var(--ie-border);
    border-radius: 12px; padding: 28px 26px;
    display: flex; flex-direction: column; justify-content: center; height: 100%;
}
.connect-pill {
    display: inline-flex; align-items: center; gap: 12px;
    background: #fff; border: 1px solid var(--ie-border);
    border-radius: 50px; padding: 10px 20px;
    margin-bottom: 16px; flex-wrap: wrap;
}
.flag { font-size: 20px; }
.connect-label { font-size: 13.5px; font-weight: 800; color: var(--ie-primary); }
.connect-arrow { color: var(--ie-green); font-weight: 900; font-size: 18px; }
.india-ireland-connect > p { font-size: 13px; color: #475569; line-height: 1.65; margin: 0; }

/* software logos row */
.software-tags {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px;
}
.software-tag {
    background: #fff; border: 1px solid var(--ie-border); color: var(--ie-primary);
    font-size: 11.5px; font-weight: 800; padding: 4px 12px; border-radius: 6px;
}

/* ══════════════════════════════════════════════
   SERVICES — add border to cards
══════════════════════════════════════════════ */
.premium-srv-card.style-white-premium {
    background: rgba(255,255,255,0.98) !important;
    border-radius: 12px; padding: 32px 22px;
    position: relative;
    border: 1.5px solid rgba(255,255,255,0.15) !important;
    border-top: 3px solid rgba(255,255,255,0.25) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
    transition: var(--transition); color: #1e293b !important;
}
.premium-srv-card.style-white-premium:hover {
    transform: translateY(-5px);
    border-color: rgba(22,155,98,0.50) !important;
    border-top-color: var(--ie-green) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.26);
}

/* ══════════════════════════════════════════════
   TESTIMONIALS — 2 per row on desktop
══════════════════════════════════════════════ */
.owl-carousel-emulated {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.carousel-review-card {
    display: none;
}
.carousel-review-card.active,
.carousel-review-card.active-secondary {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* ══════════════════════════════════════════════
   NEW SECTION 1: NUMBERS / SOCIAL PROOF BAR
══════════════════════════════════════════════ */
.ie-numbers-bar {
    background: var(--ie-primary);
    padding: 22px 0;
    position: relative; overflow: hidden;
}
.ie-numbers-bar::before {
    content: '';
    position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
    width: 600px; height: 600px;
    border: 1px solid rgba(255,255,255,0.04); border-radius: 50%;
    pointer-events: none;
}
.numbers-bar-grid {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
    position: relative; z-index: 1;
}
.numbers-bar-item {
    text-align: center; padding: 16px 20px;
    border-right: 1px solid rgba(255,255,255,0.10);
}
.numbers-bar-item:last-child { border-right: none; }
.numbers-bar-item .nb-value {
    font-size: 2.6rem; font-weight: 900; color: #fff;
    display: block; line-height: 1; margin-bottom: 6px;
}
.numbers-bar-item .nb-value em { color: var(--ie-gold); font-style: normal; }
.numbers-bar-item .nb-label {
    font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.60);
    display: block;
}

/*-------------software-----------------*/

.software-expertise-section {
    padding: 60px 0;
    background: #ffffff;
}

.software-tagline {
    font-size: 0.95rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.software-card {
    background: #ffffff;
    padding: 15px 10px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f1f1f1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 130px;
    margin-bottom: 5px;
}

/* NEW CONTAINER FOR SAME SIZE LOGOS */
.software-logo-container {
    width: 100%;
    height: 50px; /* Sabka fixed space */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.software-logo {
    max-height: 100%;
    max-width: 85%; /* Logo width ko bhi control mein rakha hai */
    width: auto;
    object-fit: contain; /* Sabse important: stretches nahi hone dega */
    filter: grayscale(0%); 
    opacity: 1;
    transition: all 0.4s ease;
}

.software-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-blue);
    display: block;
    transition: all 0.3s ease;
}

.software-card:hover {
    border-color: var(--second-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}

.software-card:hover .software-logo {
    filter: grayscale(100%); 
    opacity: 0.5;
}

.software-card:hover .software-name {
    color: #999;
}

.expert-note {
    font-size: 0.85rem;
    color: #777;
    background: #fdfdfd;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #eee;
}

@media (max-width: 768px) {
    .software-card { height: 110px; }
    .software-logo-container { height: 40px; }
}



/* ══════════════════════════════════════════════
   NEW SECTION 3: COMPLIANCE / TRUST BADGES
══════════════════════════════════════════════ */
.ie-trust-section {
    padding: 80px 0;
    background: var(--ie-bg);
    position: relative; overflow: hidden;
}
.trust-two-col {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.trust-left h2 {
    font-size: 2.1rem; font-weight: 900; color: var(--ie-primary); line-height: 1.2; margin-bottom: 16px;
}
.trust-left h2 span { color: var(--ie-green); }
.trust-left p { font-size: 15px; color: #475569; line-height: 1.7; margin-bottom: 28px; }
.trust-left .ie-btn-main { width: fit-content; }

.trust-badges-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.trust-badge-card {
    background: #fff;
    border: 1px solid var(--ie-border);
    border-left: 4px solid var(--ie-green);
    border-radius: 10px;
    padding: 20px 18px;
    display: flex; align-items: flex-start; gap: 12px;
    transition: var(--transition);
}
.trust-badge-card:hover {
    box-shadow: 0 6px 20px rgba(11,27,111,0.08); transform: translateY(-2px);
}
.trust-badge-icon {
    font-size: 24px; flex-shrink: 0; margin-top: 2px;
}
.trust-badge-card h4 { font-size: 14px; font-weight: 800; color: var(--ie-primary); margin-bottom: 4px; }
.trust-badge-card p  { font-size: 12.5px; color: #64748b; line-height: 1.55; margin: 0; }

/* ══════════════════════════════════════════════
   RESPONSIVE ADDITIONS
══════════════════════════════════════════════ */
@media(max-width:1100px) {
    .tools-grid { grid-template-columns: repeat(4,1fr); }
}


/*-------------------------- same css present in service.css */

/* ── HERO FORM ─────────────────────────────────────────────── */
.cp-hero-form-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.cp-form-box {
  background: #fff;
  border-radius: 20px;
  padding: 34px 26px;
  width: 100%;
  max-width: 390px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  position: relative;
  overflow: hidden;
}
.cp-form-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--sky));
}
.cp-form-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  background: rgba(14,188,64,0.10);
  border: 1px solid rgba(14,188,64,0.25);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.cp-form-box h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}
.cp-form-box > p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.5;
}
.cp-form-box input,
.cp-form-box select,
.cp-form-box textarea {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  color: var(--text-dark);
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  padding: 11px 14px;
  border-radius: 8px;
  margin-bottom: 10px;
  outline: none;
  transition: border-color 0.25s;
  appearance: auto;
}
.cp-form-box input:focus,
.cp-form-box select:focus,
.cp-form-box textarea:focus { border-color: var(--navy); }
.cp-form-box button {
  width: 100%;
  background: linear-gradient(135deg, var(--navy), var(--blue-mid));
  color: #fff;
  border: none;
  padding: 13px;
  font-weight: 800;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.cp-form-box button:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(16,1,144,0.28); }
.cp-form-note {
  font-size: 12px;
  color: var(--text-mid);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}
.cp-form-note i { color: var(--green); }


/*-------------------------- same css present in service.css end----------------------*/


/*-------------- ireland service page css start ------------------*/
.oas-hero-section {
    padding: 20px 0 80px;
    background: linear-gradient(135deg, #08134c 0%, #112b8f 55%, #0f6b44 100%);
    color: #fff; position: relative; overflow: hidden;
}
.oas-hero-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 15% 85%, rgba(22,155,98,0.18) 0%, transparent 70%), radial-gradient(ellipse 50% 60% at 90% 10%, rgba(17,43,143,0.35) 0%, transparent 65%);
    pointer-events: none;
}
.oas-hero-grid {
    display: grid; grid-template-columns: 1.15fr 1fr; gap: 8px;
    align-items: center; padding-top: 36px; position: relative; z-index: 2;
}
.oas-hero-left { padding-right: 10px; }
.oas-hero-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px;
    background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50px; font-weight: 700; font-size: 13px; margin-bottom: 22px;
}
.oas-hero-left h1 { font-size: 2.7rem; font-weight: 900; line-height: 1.18; margin-bottom: 20px; color: #fff; }
.oas-hero-subtext { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.85); margin-bottom: 26px; }
.oas-hero-subtext strong { color: #fff; }
.oas-hero-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; margin-bottom: 30px; }
.oas-check-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: rgba(255,255,255,0.90); }
.oas-check-item svg { flex-shrink: 0; stroke: #22bf76; }
.oas-hero-btns { display: flex; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.ie-btn-outline.oas-btn-outline-dark {
    padding: 15px 32px; border: 2px solid rgba(255,255,255,0.30); border-radius: 50px;
    color: #fff; font-weight: 700; font-size: 15px; text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.ie-btn-outline.oas-btn-outline-dark:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.60); }
.oas-hero-right { position: relative; z-index: 2; }

/* INTRO — ALIGNMENT FIXED */
/* INTRO SECTION */
.oas-intro-section{
    background:#ffffff;
}

.oas-intro-grid{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    max-width:1100px;
    margin:auto;
}

.oas-intro-left{
    max-width:850px;
    margin:auto;
}

.oas-intro-left .sub-title{
    margin-bottom:14px;
    display:inline-block;
}

.ie-heading-h2{
    font-size:2.2rem;
    font-weight:800;
    color:var(--ie-primary);
    margin-bottom:18px;
    line-height:1.25;
}

.oas-intro-left p{
    font-size:15px;
    color:#475569;
    line-height:1.75;
    margin-bottom:16px;
}

.oas-intro-left p strong{
    color:var(--ie-primary);
}

/* Stats */
.oas-stat-row{
    display:flex;
    justify-content:center;
    gap:0;
    margin-top:30px;
    border:1px solid var(--ie-border);
    border-radius:12px;
    overflow:hidden;
    max-width:700px;
    margin-left:auto;
    margin-right:auto;
}

.oas-stat-box{
    flex:1;
    text-align:center;
    padding:22px 18px;
    border-right:1px solid var(--ie-border);
    background:var(--ie-bg);
}

.oas-stat-box:last-child{
    border-right:none;
}

.oas-stat-val{
    display:block;
    font-size:2rem;
    font-weight:900;
    color:var(--ie-primary);
    line-height:1;
    margin-bottom:6px;
}

.oas-stat-val em{
    color:var(--ie-green);
    font-style:normal;
}

.oas-stat-lbl{
    font-size:12px;
    font-weight:700;
    color:#64748b;
}

/* Cards moved below */
.oas-intro-right{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    width:100%;
    margin-top:50px;
}

.oas-highlight-card{
    background:var(--ie-bg);
    border:1px solid var(--ie-border);
    border-top:4px solid var(--ie-primary);
    border-left:none;
    border-radius:14px;
    padding:24px 20px;
    text-align:center;
    transition:.35s;
    height:100%;
}

.oas-highlight-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 30px rgba(11,27,111,.08);
}

.oas-highlight-card--green{
    border-top-color:var(--ie-green);
}

.oas-highlight-icon{
    font-size:34px;
    margin-bottom:14px;
}

.oas-highlight-body h3{
    font-size:15px;
    font-weight:800;
    color:var(--ie-primary);
    margin-bottom:8px;
}

.oas-highlight-body p{
    font-size:13px;
    color:#64748b;
    line-height:1.7;
    margin:0;
}

/* Responsive */
@media(max-width:991px){

    .oas-intro-right{
        grid-template-columns:1fr;
    }

    .oas-stat-row{
        flex-direction:column;
    }

    .oas-stat-box{
        border-right:none;
        border-bottom:1px solid var(--ie-border);
    }

    .oas-stat-box:last-child{
        border-bottom:none;
    }

    .ie-heading-h2{
        font-size:1.9rem;
    }
}
.oas-intro-right { display: flex; flex-direction: column; gap: 14px; }
.oas-highlight-card {
    background: var(--ie-bg); border: 1px solid var(--ie-border);
    border-left: 4px solid var(--ie-primary); border-radius: 10px;
    padding: 18px 20px; display: flex; align-items: flex-start; gap: 14px;
    transition: all 0.3s ease;
}
.oas-highlight-card:hover { box-shadow: 0 6px 20px rgba(11,27,111,0.08); transform: translateX(3px); }
.oas-highlight-card--green { border-left-color: var(--ie-green); }
.oas-highlight-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.oas-highlight-body { flex: 1; }
.oas-highlight-body h3 { font-size: 14.5px; font-weight: 800; color: var(--ie-primary); margin-bottom: 5px; }
.oas-highlight-body p { font-size: 13px; color: #64748b; line-height: 1.58; margin: 0; }

/* WHY GRID */
.oas-why-section { background: var(--ie-bg); }
.oas-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.oas-why-card { background: #fff; border: 1px solid var(--ie-border); border-radius: 14px; padding: 30px 24px; position: relative; transition: all 0.3s ease; overflow: hidden; }
.oas-why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--ie-primary); transition: all 0.3s ease; }
.oas-why-card:hover { transform: translateY(-5px); box-shadow: var(--ie-shadow); border-color: rgba(11,27,111,0.12); }
.oas-why-card:hover::before { background: var(--ie-green); }
.oas-why-card--featured { border-color: var(--ie-primary); background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%); }
.oas-why-card--featured::before { height: 4px; }
.oas-why-num { font-size: 3rem; font-weight: 900; color: rgba(11,27,111,0.08); line-height: 1; margin-bottom: 10px; }
.oas-why-card--featured .oas-why-num { color: rgba(11,27,111,0.12); }
.oas-why-card h3 { font-size: 16px; font-weight: 800; color: var(--ie-primary); margin-bottom: 10px; }
.oas-why-card p { font-size: 13.5px; color: #64748b; line-height: 1.65; margin: 0; }

/* FOR GRID */
.oas-for-section { background: #ffffff; }
.oas-for-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.oas-for-card { background: #fff; border: 1.5px solid var(--ie-border); border-radius: 14px; padding: 32px 24px; text-align: center; transition: all 0.3s ease; position: relative; overflow: hidden; }
.oas-for-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--ie-green); transform: scaleX(0); transition: transform 0.3s ease; transform-origin: center; }
.oas-for-card:hover { transform: translateY(-5px); border-color: rgba(22,155,98,0.30); box-shadow: 0 12px 32px rgba(22,155,98,0.10); }
.oas-for-card:hover::after { transform: scaleX(1); }
.oas-for-icon { font-size: 38px; margin-bottom: 16px; display: block; }
.oas-for-card h3 { font-size: 16px; font-weight: 800; color: var(--ie-primary); margin-bottom: 10px; }
.oas-for-card p { font-size: 13.5px; color: #64748b; line-height: 1.65; margin: 0; }

/* RESPONSIVE */
@media (max-width: 1100px) {
    .oas-hero-left h1 { font-size: 2.3rem; }
    .oas-why-grid { grid-template-columns: repeat(2, 1fr); }
    .oas-for-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
    .oas-hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .oas-hero-right { max-width: 520px; margin: 0 auto; width: 100%; }
    .oas-intro-grid { grid-template-columns: 1fr; gap: 36px; }
    .oas-hero-left h1 { font-size: 2.1rem; }
}
@media (max-width: 768px) {
    .oas-hero-left h1 { font-size: 1.9rem; }
    .oas-hero-checks { grid-template-columns: 1fr; }
    .oas-why-grid { grid-template-columns: 1fr; }
    .oas-for-grid { grid-template-columns: 1fr; }
    .oas-stat-row { flex-direction: column; }
    .oas-stat-box { border-right: none; border-bottom: 1px solid var(--ie-border); }
    .oas-stat-box:last-child { border-bottom: none; }
}
@media (max-width: 480px) {
    .oas-hero-btns { flex-direction: column; }
    .oas-hero-btns a { text-align: center; justify-content: center; }
}
/*-------------- ireland service page css end ------------------*/

