
  body {
    font-family: Inter, system-ui;
    background: #fff;
    color: #0f172a
  }

  /* =====================
   MODERN NAVBAR
===================== */

  .navbar-modern {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
  }

  .navbar-brand img {
    height: 42px;
  }

  .brand-text {
    font-weight: 700;
    font-size: 18px;
    color: #0f172a;
  }

  /* NAV LINKS */
  .navbar-modern .nav-link {
    font-weight: 500;
    color: #0f172a;
    position: relative;
    padding: 8px 12px;
    transition: all .3s ease;
  }

  .navbar-modern .nav-link:hover,
  .navbar-modern .nav-link.active {
    color: #2563eb;
  }

  /* Animated underline */
  .navbar-modern .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: .3s;
    transform: translateX(-50%);
  }

  .navbar-modern .nav-link:hover::after,
  .navbar-modern .nav-link.active::after {
    width: 60%;
  }

  /* DROPDOWN */


  /* CTA BUTTON */
  .navbar .btn-primary {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    border: none;
    box-shadow: 0 8px 25px rgba(37, 99, 235, .35);
  }

  .navbar .btn-primary:hover {
    background: linear-gradient(135deg, #1e40af, #2563eb);
  }

  /* MOBILE */
  @media(max-width:991px) {
    .brand-text {
      display: none;
    }

    .navbar-modern .nav-link::after {
      display: none;
    }
  }


  .hero {
    padding: 80px 0;
    background: #f8fafc
  }

  .hero h1 {
    font-weight: 800;
    font-size: 48px
  }

  .hero h1 span {
    color: #2563eb
  }

  .search-box {
    max-width: 520px
  }

  .tag {
    display: inline-block;
    background: #e5edff;
    color: #1d4ed8;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    margin: 6px 6px 0 0;
    text-decoration: none
  }

  .circle-wrap {
    position: relative;
    height: 420px
  }

  .circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%)
  }

  .circle h4 {
    font-weight: 700;
    color: #2563eb;
    text-align: center
  }

  .orbit {
    position: absolute;
    width: 420px;
    height: 420px;
    border: 2px dashed #c7d2fe;
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: spin 30s linear infinite;
  }

  .orbit-item {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    animation: counter-spin 20s linear infinite;
  }



  /* Center circle pulse animation */
  .circle {
    animation: pulse 3s ease-in-out infinite;
  }

  /* ===== KEYFRAMES ===== */
  @keyframes spin {
    from {
      transform: translateX(-50%) rotate(0deg);
    }

    to {
      transform: translateX(-50%) rotate(360deg);
    }
  }

  @keyframes counter-spin {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(-360deg);
    }
  }

  @keyframes pulse {
    0% {
      transform: translateX(-50%) scale(1);
      box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    }

    50% {
      transform: translateX(-50%) scale(1.05);
      box-shadow: 0 30px 60px rgba(37, 99, 235, .25);
    }

    100% {
      transform: translateX(-50%) scale(1);
      box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    }
  }


  .o1 {
    top: -10px;
    left: 50%;
    transform: translateX(-50%)
  }

  .o2 {
    right: -10px;
    top: 50%;
    transform: translateY(-50%)
  }

  .o3 {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%)
  }

  .o4 {
    left: -10px;
    top: 50%;
    transform: translateY(-50%)
  }

  /* =====================
   SERVICE CARD BASE
===================== */
  .service-card {
    position: relative;
    padding: 60px 22px 22px;
    border-radius: 16px;
    background: #fff;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    transition: all .4s ease;

    /* ❌ REMOVE THIS */
    /* overflow: hidden; */

    height: 100%;
    /* IMPORTANT for equal height */
  }

  /* Hover lift */
  .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .18);
  }

  /* =====================
   ICON BASE
===================== */
  .service-icon {
    width: 66px;
    height: 66px;
    position: absolute;
    top: -33px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    transition: all .6s ease;
  }

  /* Hover rotate + glow */
  .service-card:hover .service-icon {
    transform: translateX(-50%) rotate(360deg) scale(1.15);
    box-shadow: 0 0 25px rgba(255, 255, 255, .6),
      0 0 50px rgba(255, 255, 255, .4);
  }

  /* =====================
   DIFFERENT GRADIENTS
===================== */
  .icon-blue {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
  }

  .icon-purple {
    background: linear-gradient(135deg, #7c3aed, #c084fc);
  }

  .icon-green {
    background: linear-gradient(135deg, #16a34a, #4ade80);
  }

  .icon-orange {
    background: linear-gradient(135deg, #ea580c, #fb923c);
  }

  .icon-pink {
    background: linear-gradient(135deg, #db2777, #f472b6);
  }

  .icon-teal {
    background: linear-gradient(135deg, #0d9488, #2dd4bf);
  }

  .icon-dark {
    background: linear-gradient(135deg, #111827, #374151);
  }

  /* =====================
   TEXT ANIMATION
===================== */
  .service-card h5 {
    font-weight: 700;
    transition: color .3s ease;
  }

  .service-card:hover h5 {
    color: #2563eb;
  }

  .service-card ul {
    text-align: left;
    margin-top: 14px;
  }

  .service-card li {
    transition: transform .3s ease;
  }

  .service-card:hover li {
    transform: translateX(4px);
  }

  /* =====================
   SCROLL ANIMATION (AOS STYLE)
===================== */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .9s ease;
  }

  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }



  /* =====================
   MODERN FOOTER
===================== */

  .footer-modern {
    background: #0f172a;
    color: #cbd5f5;
    padding: 70px 0 30px;
  }

  .footer-text {
    font-size: 15px;
    line-height: 1.7;
    opacity: .9;
  }

  .footer-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 16px;
  }

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

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

  .footer-links a {
    color: #cbd5f5;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
  }

  .footer-links a:hover {
    color: #60a5fa;
    padding-left: 6px;
  }

  .footer-contact {
    list-style: none;
    padding: 0;
    font-size: 14px;
  }

  .footer-contact li {
    margin-bottom: 10px;
  }

  .footer-divider {
    border-color: rgba(255, 255, 255, .15);
    margin: 40px 0 20px;
  }

  .footer-copy {
    font-size: 14px;
    opacity: .85;
  }

  /* SOCIAL */
  .footer-social {
    display: flex;
    gap: 12px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1e293b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
  }

  .footer-social a:hover {
    background: #2563eb;
  }

  /* MOBILE */
  @media(max-width:768px) {
    .footer-modern {
      text-align: center;
    }

    .footer-social {
      margin-top: 12px;
      justify-content: center;
    }
  }


  .modern-title-2 {
    font-weight: 700;
    font-size: 26px;
    line-height: 1.3;
    color: #0f172a;
  }

  .modern-title-2 span {
    display: inline-block;
    margin-top: 6px;
    font-size: 22px;
    color: #2563eb;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* =====================
   ABOUT SECTION MODERN
===================== */

  .about-modern {
    position: relative;
    overflow: hidden;
  }

  .about-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: #e5edff;
    color: #2563eb;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
  }

  .about-title {
    font-weight: 800;
    font-size: 36px;
    line-height: 1.2;
    color: #0f172a;
  }

  .about-title span {
    color: #2563eb;
  }

  .about-text {
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
    margin-top: 14px;
  }

  /* FEATURE LIST */
  .about-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 22px;
  }

  .about-item {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .3s ease;
  }

  .about-item:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, .25);
  }

  /* IMAGE CARD */
  .about-image-wrap {
    position: relative;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, #e0e7ff, #f8fafc);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .15);
  }

  .about-image-wrap img {
    border-radius: 18px;
  }

  /* MOBILE FIX */
  @media(max-width:768px) {
    .about-title {
      font-size: 28px;
    }

    .about-list {
      grid-template-columns: 1fr;
    }
  }

  /* =====================
   TEAM SLIDER
===================== */

  /* TEAM SECTION */
  .team-section {
    overflow: hidden;
  }

  .team-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
    transition: .4s;
    cursor: pointer;
  }

  .team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(37, 99, 235, .25);
  }

  .team-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #e5edff;
    margin-bottom: 14px;
  }

  .team-card h5 {
    font-weight: 700;
  }

  .team-card span {
    color: #2563eb;
    font-size: 14px
  }

  /* SOCIAL ICONS */
  .team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
  }

  .team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
  }

  .team-social a:hover {
    background: #1e40af;
  }

  /* Swiper arrows */
  .swiper-button-next,
  .swiper-button-prev {
    color: #2563eb;
  }

  /* =====================
   MODERN DROPDOWN
===================== */

  .dropdown-modern .dropdown-menu {
    min-width: 320px;
    padding: 14px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .18);
    border: 1px solid rgba(0, 0, 0, .05);

    /* animation start state */
    opacity: 0;
    transform: translateY(12px);
    transition: all .35s ease;
    display: block;
    visibility: hidden;
  }

  /* show dropdown */
  .dropdown-modern.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .dropdown-menu {
    animation: dropFade .3s ease;
  }

  @keyframes dropFade {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* dropdown items */
  .dropdown-menu-modern .dropdown-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 14px;
    transition: all .3s ease;
  }

  .dropdown-menu-modern .dropdown-item strong {
    font-weight: 600;
    display: block;
  }

  .dropdown-menu-modern .dropdown-item small {
    font-size: 13px;
    color: #64748b;
  }

  /* icon */
  .dd-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
  }

  /* hover effect */
  .dropdown-menu-modern .dropdown-item:hover {
    background: #f1f5ff;
    transform: translateX(4px);
  }

  /* =====================
   MEGA MENU
===================== */

  .mega-dropdown {
    position: static;
  }

  .mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    border: none;
    padding: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(0, 0, 0, .2);

    /* animation */
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: all .35s ease;
    display: block;
  }

  /* SHOW */
  .mega-dropdown.show .mega-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  /* TITLE */
  .mega-title {
    font-weight: 700;
    margin-bottom: 18px;
  }

  /* ITEM */
  .mega-item {
    display: flex;
    gap: 14px;
    padding: 14px;
    border-radius: 14px;
    text-decoration: none;
    color: #0f172a;
    transition: all .3s ease;
  }

  .mega-item strong {
    display: block;
  }

  .mega-item small {
    font-size: 13px;
    color: #64748b;
  }

  /* ICON */
  .mega-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
  }

  /* HOVER */
  .mega-item:hover {
    background: #f1f5ff;
    transform: translateX(6px);
  }

  /* RIGHT IMAGE */
  .mega-image {
    background:
      linear-gradient(135deg, rgba(37, 99, 235, .85), rgba(15, 23, 42, .85)),
      url("img/services-bg.jpg") center/cover no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
  }

  .mega-image-content {
    padding: 50px;
  }

  .mega-image-content h5 {
    font-weight: 700;
    margin-bottom: 10px;
  }

  /* DESKTOP HOVER OPEN */
  @media(min-width:992px) {
    .mega-dropdown:hover .mega-menu {
      opacity: 1;
      transform: translateY(0);
      visibility: visible;
    }
  }

  /* MOBILE FIX */
  @media(max-width:991px) {
    .mega-menu {
      border-radius: 16px;
      box-shadow: none;
    }

    .mega-image {
      display: none;
    }
  }

  /* =====================
   DESKTOP HOVER OPEN
===================== */
  @media(min-width:992px) {
    .dropdown-modern:hover>.dropdown-menu {
      opacity: 1;
      transform: translateY(0);
      visibility: visible;
    }
  }


  /* AUTO SLIDE */
  @keyframes teamScroll {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  /* MOBILE */
  @media(max-width:768px) {
    .team-card {
      min-width: 220px;
    }
  }

  /* =====================
   ELEGANT READ MORE
===================== */
  .read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
  }

  .read-more-btn::after {
    content: "→";
    font-size: 16px;
    transition: transform 0.35s ease;
  }

  .read-more-btn:hover {
    color: #1e40af;
  }

  .read-more-btn:hover::after {
    transform: translateX(6px);
  }

  /* Optional subtle underline animation */
  .read-more-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.35s ease;
  }

  .read-more-btn:hover::before {
    width: 100%;
  }

  .service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .service-card ul {
    margin-bottom: auto;
    /* pushes Read More to bottom */
  }

  .read-more-btn {
    margin-top: 16px;
  }

  @keyframes btnSpin {
    to {
      transform: rotate(360deg);
    }
  }

  .btn-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: btnSpin .8s linear infinite;
    display: inline-block;
  }


  .d-none {
    display: none;
  }

  .popup-msg {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #16a34a;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    display: none;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
  }

  .popup-msg.error {
    background: #dc2626;
  }
