 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --nav-h: 68px;
    --brand: #1a56ff;
    --brand-dark: #1340d6;
    --accent: #f59e0b;
    --text-nav: #fff;
    --drop-bg: #ffffff;
    --drop-text: #1e293b;
    --drop-hover: #f0f5ff;
    --drop-accent: #1a56ff;
    --border-col: rgba(255,255,255,0.12);
    --shadow: 0 8px 32px rgba(26,86,255,0.18);
    --radius: 12px;
    --font: 'Plus Jakarta Sans', sans-serif;
    --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
  }

  body { font-family: var(--font); padding-top: var(--nav-h); }

  /* ─── NAVBAR WRAPPER ─── */
  .site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: linear-gradient(100deg, #1a56ff 0%, #1340d6 60%, #0f30aa 100%);
    box-shadow: var(--shadow);
    z-index: 1000;
    display: flex;
    align-items: center;
  }

  .site-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* ─── LOGO ─── */
 /* LOGO WRAPPER */
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

/* LOGO IMAGE */
.nav-logo {
    max-height: 58px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: all 0.35s ease;
}

/* HOVER EFFECT */
.navbar-brand:hover .nav-logo {
    transform: scale(1.04);
}

/* MOBILE */
@media(max-width:768px){

    .nav-logo {
        max-height: 46px;
    }

}

  /* ─── DESKTOP MENU ─── */
  .nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2px;
    margin: 0;
    padding: 0;
  }

  .nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    border: 1px solid transparent;
  }

  .nav-menu > li > a:hover,
  .nav-menu > li:hover > a {
    background: rgba(255,255,255,0.14);
    color: #fff;
    border-color: var(--border-col);
  }

  /* arrow icon */
  .nav-menu > li > a .arrow {
    width: 14px; height: 14px;
    display: inline-flex;
    opacity: 0.7;
    transition: transform var(--transition);
    flex-shrink: 0;
  }
  .nav-menu > li:hover > a .arrow {
    transform: rotate(180deg);
    opacity: 1;
  }

  /* ─── DROPDOWN ─── */
  .nav-menu > li { position: relative; }

  .nav-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--drop-bg);
    border-radius: var(--radius);
    min-width: 210px;
    padding: 8px;
    list-style: none;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.06);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    pointer-events: none;
  }

  /* little top arrow */
  .nav-dropdown::before {
    content: '';
    position: absolute;
    top: -6px; left: 50%; transform: translateX(-50%);
    width: 12px; height: 12px;
    background: #fff;
    rotate: 45deg;
    border-radius: 2px;
    box-shadow: -2px -2px 4px rgba(0,0,0,0.04);
  }

  .nav-menu > li:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }

  .nav-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--drop-text);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    line-height: 1.3;
  }

  .nav-dropdown li a::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #d1d5db;
    flex-shrink: 0;
    transition: background var(--transition), transform var(--transition);
  }

  .nav-dropdown li a:hover {
    background: var(--drop-hover);
    color: var(--drop-accent);
  }
  .nav-dropdown li a:hover::before {
    background: var(--drop-accent);
    transform: scale(1.4);
  }

  /* ─── CTA BUTTON ─── */
  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--brand) !important;
    font-weight: 600 !important;
    font-size: 14px;
    padding: 8px 18px !important;
    border-radius: 8px !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: var(--transition) !important;
  }
  .nav-cta:hover {
    background: #f0f5ff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.18) !important;
  }

  /* ─── HAMBURGER ─── */
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    padding: 9px 10px;
    cursor: pointer;
    transition: var(--transition);
  }
  .nav-toggle span {
    display: block;
    width: 20px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
  }
  .nav-toggle:hover { background: rgba(255,255,255,0.1); }

  /* hamburger → X animation */
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ─── MOBILE DRAWER ─── */
  .nav-mobile {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #fff;
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    z-index: 999;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: none;
  }
  .nav-mobile.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mob-list { list-style: none; padding: 12px 16px 20px; }

  .mob-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 14px;
    border-radius: 10px;
    color: #1e293b;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid #f1f5f9;
  }
  .mob-item > a:hover { background: #f8faff; color: var(--brand); }

  .mob-item > a .mob-arrow {
    width: 16px; height: 16px;
    color: #94a3b8;
    transition: transform var(--transition);
    flex-shrink: 0;
  }
  .mob-item.open > a .mob-arrow { transform: rotate(90deg); color: var(--brand); }
  .mob-item.open > a { color: var(--brand); }

  .mob-submenu {
    list-style: none;
    padding: 4px 0 4px 14px;
    display: none;
  }
  .mob-item.open .mob-submenu { display: block; }

  .mob-submenu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
  }
  .mob-submenu li a::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #cbd5e1;
    flex-shrink: 0;
    transition: background var(--transition);
  }
  .mob-submenu li a:hover { background: #f0f5ff; color: var(--brand); }
  .mob-submenu li a:hover::before { background: var(--brand); }

  .mob-divider { height: 1px; background: #f1f5f9; margin: 6px 0; }

  /* ─── RESPONSIVE BREAKPOINTS ─── */
  @media (max-width: 991px) {
    .nav-menu, .nav-cta-wrap { display: none; }
    .nav-toggle { display: flex; }
    .nav-mobile { display: block; }
  }

  @media (max-width: 480px) {
    .nav-logo-text { font-size: 15px; }
  }

  /* ─── OVERLAY ─── */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--nav-h);
    background: rgba(0,0,0,0.35);
    z-index: 998;
    backdrop-filter: blur(2px);
  }
  .nav-overlay.open { display: block; }


/* ── RESET / BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', system-ui, sans-serif; color: #1a1a2e; }

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 92vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,10,40,.82) 40%, rgba(26,60,120,.6));
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .4rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}
.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 1.2rem;
}
.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,.78);
    margin-bottom: 2.2rem;
    line-height: 1.7;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary-hero {
    background: #2563eb;
    color: #fff;
    padding: .85rem 2rem;
    border-radius: .5rem;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    transition: background .2s, transform .15s;
}
.btn-primary-hero:hover { background: #1d4ed8; transform: translateY(-2px); }
.btn-outline-hero {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.5);
    padding: .85rem 2rem;
    border-radius: .5rem;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    transition: border-color .2s, background .2s, transform .15s;
}
.btn-outline-hero:hover { border-color: #fff; background: rgba(255,255,255,.1); transform: translateY(-2px); }

/* ── SECTION SHARED ── */
section { padding: 5rem 1.5rem; }
.container { max-width: 1160px; margin: 0 auto; }
.section-eyebrow {
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: .6rem;
}
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .75rem;
}
.section-sub {
    font-size: 1rem;
    color: #64748b;
    max-width: 560px;
    line-height: 1.65;
    margin-bottom: 3rem;
}
.section-header { text-align: center; }
.section-header .section-sub { margin-left: auto; margin-right: auto; }

/* ── SERVICES ── */
.services-section { background: #f8fafc; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
    display: flex;
    flex-direction: column;
}
.service-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.09); transform: translateY(-4px); }
.service-card-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #fff;
    padding: 8px;
    border-radius: 16px;
    display: block;
    transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.service-card:hover .service-card-img {
    transform: scale(1.03);
}
.service-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-tag {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .25rem .7rem;
    border-radius: 2rem;
    margin-bottom: .85rem;
}
.service-card-body h5 { font-size: 1.1rem; font-weight: 700; color: #0f172a; margin-bottom: .55rem; }
.service-card-body p { font-size: .9rem; color: #64748b; line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.service-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: #2563eb;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap .2s;
}
.service-link:hover { gap: .7rem; }
.service-link::after { content: '→'; }

/* ── STATS STRIP ── */
.stats-strip { background: #0f172a; padding: 3.5rem 1.5rem; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    text-align: center;
    max-width: 1160px;
    margin: 0 auto;
}
.stat-num { font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1.1; }
.stat-label { font-size: .85rem; color: #94a3b8; margin-top: .3rem; }
.stat-accent { color: #2563eb; }

/* ── BLOG ── */
.blogs-section { background: #fff; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.blog-card {
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .2s, transform .2s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.08); transform: translateY(-4px); }
.blog-card-img { width: 100%;
    height: 250px;
    object-fit: contain;
    background: #fff;
    padding: 8px;
    border-radius: 16px;
    display: block;
    transition: transform 0.4s ease;}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: .78rem; color: #94a3b8; margin-bottom: .65rem; }
.blog-card-body h5 { font-size: 1.05rem; font-weight: 700; color: #0f172a; margin-bottom: .5rem; line-height: 1.4; }
.blog-card-body p { font-size: .88rem; color: #64748b; line-height: 1.65; flex: 1; margin-bottom: 1.2rem; }
.blog-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .875rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    transition: gap .2s;
}
.blog-link:hover { gap: .7rem; }
.blog-link::after { content: '→'; }

/* ── CTA ── */
.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 5.5rem 1.5rem;
    text-align: center;
}
.cta-section h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 700; color: #fff; margin-bottom: .9rem; }
.cta-section p { font-size: 1rem; color: rgba(255,255,255,.78); margin-bottom: 2rem; }
.btn-cta-white {
    display: inline-block;
    background: #fff;
    color: #1e3a8a;
    padding: .9rem 2.2rem;
    border-radius: .5rem;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: background .2s, transform .15s;
    margin: .4rem;
}
.btn-cta-white:hover { background: #e0e7ff; transform: translateY(-2px); }
.btn-cta-ghost {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.5);
    padding: .9rem 2.2rem;
    border-radius: .5rem;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: border-color .2s, transform .15s;
    margin: .4rem;
}
.btn-cta-ghost:hover { border-color: #fff; transform: translateY(-2px); }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
    section { padding: 3.5rem 1rem; }
    .stat-num { font-size: 1.9rem; }
}


/* CONTENT */
.blog-content {
    padding: 18px;
}

/* TITLE */
.blog-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0f172a;
}

/* DESCRIPTION */
.blog-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* BUTTON */
.blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #1a56ff;
    text-decoration: none;
    transition: 0.3s;
}

.blog-btn:hover {
    color: #0f30aa;
    padding-left: 4px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .blog-img img {
        height: 180px;
    }
}

.inner-banner {
    background: #000;
    color: #fff;
    padding: 60px 0;
}

.page-content {
    padding: 50px 0;
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}

/* HERO */
.service-hero {
    height: 200px;
    background-size: cover;
    background-position: left;
    position: relative;
}

.service-hero .overlay {
    background: rgba(0,0,0,0.6);
    height: 100%;
    display: flex;
    align-items: center;
}

.service-hero h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
}

/* CONTENT */
.service-detail {
    padding: 60px 0;
}

.service-content {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}

/* CTA */
.service-cta {
    margin-top: 30px;
    padding: 25px;
    background: #f1f5ff;
    border-radius: 10px;
}

.service-cta h4 {
    margin-bottom: 10px;
}

/* SIDEBAR */
.sidebar {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.sidebar h5 {
    margin-bottom: 15px;
}

.sidebar a {
    display: block;
    padding: 8px 0;
    color: #1a56ff;
    text-decoration: none;
}

.sidebar a:hover {
    padding-left: 5px;
}

/* BOX */
.enquiry-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* TITLE */
.enquiry-box h5 {
    margin-bottom: 15px;
    font-weight: 600;
}

/* INPUT */
.enquiry-box input,
.enquiry-box textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

/* FOCUS */
.enquiry-box input:focus,
.enquiry-box textarea:focus {
    border-color: #1a56ff;
}

/* BUTTON */
.enquiry-box button {
    width: 100%;
    padding: 10px;
    background: linear-gradient(120deg, #1a56ff, #0f30aa);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.enquiry-box button:hover {
    transform: translateY(-2px);
}

/* SERVICE LIST */
.service-list {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-list a {
    display: block;
    padding: 8px 0;
    color: #1a56ff;
    text-decoration: none;
}

.service-list a:hover {
    padding-left: 5px;
}
.sidebar {
    position: sticky;
    top: 100px; /* header height ke hisab se adjust karo */
}

/* HERO */
.blog-hero {
    background: #000;
    color: #fff;
    padding: 60px 0;
}

.blog-hero h1 {
    font-size: 32px;
    font-weight: 700;
}

/* CONTENT */
.blog-detail {
    padding: 60px 0;
}

.blog-content {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}

/* SIDEBAR */
.sidebar-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.sidebar-box h5 {
    margin-bottom: 15px;
}

.sidebar-box a {
    display: block;
    padding: 8px 0;
    color: #1a56ff;
    text-decoration: none;
}

.sidebar-box a:hover {
    padding-left: 5px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-6px);
}

.blog-card-img { width: 100%;
    height: 250px;
    object-fit: contain;
    background: #fff;
    padding: 8px;
    border-radius: 16px;
    display: block;
    transition: transform 0.4s ease;}

.blog-content {
    padding: 15px;
}

.blog-btn {
    color: #1a56ff;
    font-weight: 600;
}

.page-btn {
    padding: 8px 12px;
    margin: 3px;
    background: #eee;
    text-decoration: none;
}

.page-btn.active {
    background: #1a56ff;
    color: #fff;
}

/* SECTION */
.books {
    padding: 80px 0;
    background: #f8fafc;
}

/* CARD */
.book-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.book-card:hover {
    transform: translateY(-6px);
}

/* CANVAS */
.book-card canvas {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* TITLE */
.book-card h6 {
    font-size: 14px;
    margin-bottom: 10px;
}

/* BUTTONS */
.book-actions {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.btn-view,
.btn-download {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
}

.btn-view {
    background: #1a56ff;
}

.btn-download {
    background: #0f30aa;
}

.btn-view:hover,
.btn-download:hover {
    opacity: 0.9;
}

/* SECTION */
.error-page {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    text-align: center;
}

/* 404 NUMBER */
.error-code {
    font-size: 120px;
    font-weight: 800;
    color: #1a56ff;
    margin-bottom: 10px;
}

/* TEXT */
.error-page h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.error-page p {
    color: #64748b;
    margin-bottom: 25px;
}

/* SEARCH */
.search-box {
    max-width: 400px;
    margin: auto;
    margin-bottom: 25px;
}

.search-box input {
    width: 70%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px 0 0 6px;
}

.search-box button {
    padding: 10px 15px;
    background: #1a56ff;
    color: #fff;
    border: none;
    border-radius: 0 6px 6px 0;
}

/* BUTTONS */
.error-actions a {
    display: inline-block;
    margin: 5px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
}

/* HOME BTN */
.btn-home {
    background: #1a56ff;
    color: #fff;
}

/* CONTACT BTN */
.btn-contact {
    background: #e2e8f0;
    color: #333;
}

/* HOVER */
.btn-home:hover {
    background: #0f30aa;
}

.btn-contact:hover {
    background: #cbd5e1;
}



/* BANNER */
.contact-banner {
    background: #000;
    color: #fff;
    padding: 80px 0;
}

.contact-banner h1 {
    font-size: 42px;
    font-weight: 700;
}

.contact-banner p {
    margin-top: 10px;
    opacity: 0.9;
}

/* SECTION */
.contact-section {
    padding: 80px 0;
    background: #f8fafc;
}

/* CARDS */
.contact-info-card,
.contact-form-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    height: 100%;
}

/* TITLES */
.contact-info-card h3,
.contact-form-card h3 {
    margin-bottom: 25px;
    font-weight: 700;
    color: #0f172a;
}

/* INFO ITEMS */
.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item span {
    font-size: 24px;
}

.contact-info-item h6 {
    margin-bottom: 4px;
    font-weight: 600;
}

/* FORM */
.form-control {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #e2e8f0;
}

.form-control:focus {
    box-shadow: none;
    border-color: #1a56ff;
}

/* BUTTON */
.contact-btn {
    background: linear-gradient(120deg, #1a56ff, #0f30aa);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26,86,255,0.2);
}

/* MOBILE */
@media(max-width:768px){

    .contact-banner h1 {
        font-size: 32px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 20px;
    }

}
/* ABOUT SECTION */
.about-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* IMAGE WRAP */
.about-image-wrap {
    position: relative;
}

/* MAIN IMAGE */
.about-img {
    width: 100%;
    border-radius: 24px;
    display: block;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* EXPERIENCE BOX */
.experience-box {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: linear-gradient(135deg,#1a56ff,#0f30aa);
    color: #fff;
    padding: 20px 25px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(26,86,255,0.25);
}

.experience-box h3 {
    font-size: 34px;
    margin: 0;
    font-weight: 700;
}

.experience-box span {
    font-size: 14px;
    opacity: 0.9;
}

/* CONTENT */
.about-content {
    padding-left: 25px;
}

/* EYEBROW */
.section-eyebrow {
    display: inline-block;
    background: rgba(26,86,255,0.08);
    color: #1a56ff;
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

/* TITLE */
.about-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a;
    margin-bottom: 22px;
}

/* TEXT */
.about-text {
    font-size: 16px;
    line-height: 1.9;
    color: #64748b;
    margin-bottom: 18px;
}

/* FEATURES */
.about-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 35px;
}

.about-feature {
    background: #f8fafc;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    transition: 0.3s ease;
}

.about-feature:hover {
    background: #1a56ff;
    color: #fff;
    transform: translateY(-3px);
}

/* BUTTON */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg,#1a56ff,#0f30aa);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(26,86,255,0.25);
    color: #fff;
}

/* RESPONSIVE */
@media(max-width:991px){

    .about-content {
        padding-left: 0;
    }

    .about-title {
        font-size: 34px;
    }

}

@media(max-width:768px){

    .about-section {
        padding: 70px 0;
    }

    .about-title {
        font-size: 28px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .experience-box {
        padding: 16px 20px;
    }

    .experience-box h3 {
        font-size: 28px;
    }

}
/* HERO */
.services-hero {
    background: #000;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255,255,255,0.15);
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 20px;
}

.services-hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 18px;
}

.services-hero p {
    max-width: 700px;
    margin: auto;
    font-size: 17px;
    opacity: 0.9;
    line-height: 1.8;
}

/* SECTION */
.services-page {
    padding: 90px 0;
    background: #f8fafc;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

/* CARD */
.service-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    transition: 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

/* IMAGE */
.service-img-wrap {
    overflow: hidden;
}

.service-card-img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    background: #fff;
    padding: 10px;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-img {
    transform: scale(1.04);
}

/* BODY */
.service-card-body {
    padding: 25px;
}

/* BADGE */
.service-badge {
    display: inline-block;
    background: rgba(26,86,255,0.08);
    color: #1a56ff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* TITLE */
.service-card-body h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

/* DESCRIPTION */
.service-card-body p {
    color: #64748b;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 20px;
}

/* BUTTON */
.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a56ff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.service-btn:hover {
    gap: 14px;
    color: #0f30aa;
}

/* RESPONSIVE */
@media(max-width:991px){

    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .services-hero h1 {
        font-size: 40px;
    }

}

@media(max-width:768px){

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-hero {
        padding: 70px 0;
    }

    .services-hero h1 {
        font-size: 32px;
    }

    .service-card-body {
        padding: 20px;
    }

}

/* =========================
   FOOTER SECTION
========================= */
.footer-section {
    background: #0b1220;
    color: #cbd5e1;
    position: relative;
    overflow: hidden;
}

/* =========================
   CTA
========================= */
.footer-cta {
    padding: 0 0 50px;
}

.footer-cta-box {
    background: linear-gradient(135deg,#1a56ff,#0f30aa);
    border-radius: 28px;
    padding: 45px 50px;
    margin-top: -70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 25px 60px rgba(26,86,255,0.25);
}

.footer-mini-title {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 10px;
    color: #fff;
}

.footer-cta-box h2 {
    color: #fff;
    font-size: 38px;
    line-height: 1.3;
    margin: 0;
    font-weight: 700;
    max-width: 650px;
}

.footer-cta-btn {
    background: #fff;
    color: #1a56ff;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.35s ease;
    white-space: nowrap;
}

.footer-cta-btn:hover {
    transform: translateY(-3px);
    color: #0f30aa;
}

/* =========================
   MAIN FOOTER
========================= */
.footer-main {
    padding: 30px 0 70px;
}

/* BRAND */
.footer-logo {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand p {
    line-height: 1.9;
    color: #94a3b8;
    font-size: 15px;
    margin-bottom: 28px;
}

/* SOCIAL */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: 0.35s ease;
}

.footer-social a:hover {
    background: #1a56ff;
    transform: translateY(-4px);
}

/* TITLES */
.footer-title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 22px;
    font-weight: 600;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 6px;
}

/* CONTACT */
.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.footer-contact-item span {
    font-size: 18px;
    margin-top: 2px;
}

.footer-contact-item p {
    margin: 0;
    color: #94a3b8;
    line-height: 1.7;
}

/* =========================
   BOTTOM
========================= */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
}

.footer-bottom-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #94a3b8;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:991px){

    .footer-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 35px;
    }

    .footer-cta-box h2 {
        font-size: 30px;
    }

}

@media(max-width:768px){

    .footer-main {
        padding: 10px 0 50px;
    }

    .footer-cta-box {
        margin-top: -40px;
    }

    .footer-cta-box h2 {
        font-size: 26px;
    }

    .footer-bottom-wrap {
        flex-direction: column;
        text-align: center;
    }

}