
.menu-logo {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.navbar.fixed-top {
  z-index: 1050; /* Bootstrap default */
}

/* Hide on mobile only */
.hide-on-mobile {
  display: block; /* default for desktop */
}

@media (max-width: 767px) {
  .hide-on-mobile {
    display: none; /* hide on screens <= 767px */
  }
}


html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 100px; /* adjust based on your header height */
}



a {
  text-decoration: none !important;
  color: black;
}

.space {
  block-size: 30px;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

h1 {
  font-weight: 700; /* same as Bootstrap's fw-bold */
  line-height: 1.2; /* optional: improves readability */
}

h2 {  
  font-size: 2.125rem;
  line-height: 1.25;
  margin-bottom: 3rem;
  font-weight: 600;
   color: #007c91;
   position: relative;
   text-align: center;
}

@media (max-width: 768px) {
h2 {
    font-size: 1.75rem;
  }
}


h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #044772;
    display: block;
    margin: 0.5rem auto 0;
    border-radius: 2px;
  }

:root {
  --bs-link-color-rgb: 44, 171, 194;      /* #2cabc2 */
  --bs-link-hover-color-rgb: 30, 130, 150; /* darker shade for hover */
}

.btn {
  /* Base colors (gradient from light blue to dark blue) */
  --bs-btn-bg: linear-gradient(135deg, #67daec 0%, #044772 100%);
  --bs-btn-border-color: #67daec;

  /* Hover state (slightly darker gradient) */
  --bs-btn-hover-bg: linear-gradient(135deg, #0072ff 0%, #044772 100%);
  --bs-btn-hover-border-color: #044772;

  /* Active (pressed) state */
  --bs-btn-active-bg: linear-gradient(135deg, #044772 0%, #044772 100%);
  --bs-btn-active-border-color: #044772;

  /* Disabled */
  --bs-btn-disabled-bg: #b3d4fc;
  --bs-btn-disabled-border-color: #b3d4fc;

  /* Text */
  --bs-btn-color: #000;
  --bs-btn-hover-color: #000;
  --bs-btn-active-color: #000;
  --bs-btn-disabled-color: #000;

  /* Extra styling for beauty */
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 8px rgba(0, 114, 255, 0.3);
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 114, 255, 0.4);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 6px rgba(0, 114, 255, 0.4);
}

.white {
  height: 40px;
  color: #fff;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  background-color: #044772;
}

/* Make mega menu box smaller */
.dropdown.position-static .dropdown-menu.mega {
  width: 80%;   /* smaller width */
  max-width: 900px;
  margin: 0 auto; /* center it */
}

/* Background overlay */
.overlay {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* black transparent */
  z-index: 1040; /* just below dropdown */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.navbar>.container, .navbar>.container-fluid, .navbar>.container-lg, .navbar>.container-md, .navbar>.container-sm, .navbar>.container-xl, .navbar>.container-xxl {max-width: 1200px;}

.navbar,
.dropdown-menu.mega {
  position: relative;
  z-index: 1050; /* higher than overlay */
}

 /* Navbar base */
    .navbar { background:#fff; }
    .navbar .nav-link { font-weight:600; }

    /* Mega menu base */
    .dropdown.position-static .dropdown-menu.mega {
      width: 100%;
      max-width: 100%; /* optional: cap it */
     
      left: 0;
      right: 0;
      border: none;
      border-radius: 16px;
      padding: 0.6rem 0;
      margin-top: auto;
      display: block;
      opacity: 0;
      transform: translateY(8px);
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.6s ease, transform 0.6s ease, visibility 0s linear 0.6s;
    }
    .dropdown.position-static.show > .dropdown-menu.mega {
      opacity: 1;
      transform: translateY(0);
      visibility: visible;
      pointer-events: auto;
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    /* Mega inner */
    .mega-inner {
      background: linear-gradient(180deg,#ffffff 0%, #f8f9fb 100%);
      border-radius: 12px;
      box-shadow: 0 6px 24px rgba(0,0,0,.08);
      padding: 0.5rem;
    }
/* Image boxes */
    .img-box {
      background: repeating-linear-gradient(45deg, #e9ecef, #e9ecef 10px, #f4f5f7 10px, #f4f5f7 20px);
      border-radius: 12px;
      min-height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      color:#6c757d;
      font-weight:700;
      letter-spacing:.02em;
    }
    .img-box.tall { min-height:220px; }

    /* Links */
    .link-list .list-group-item {
      border:0;
      padding: 0.3rem 0;
      background:transparent;
      display:flex;
      align-items:center;
      font-weight:500;
    }
    .link-list .list-group-item i { width:1.25rem; font-size:1.05rem; }
    .link-list .list-group-item:hover { color:#044772; }

    /* Menu heading */
    .menu-heading { font-size:.9rem; text-transform:uppercase; letter-spacing:.06em; color:#6c757d; font-weight:700; margin-bottom:.5rem; }

    /* Style title */
    .style-title { font-size: .95rem; color:#6c757d; text-transform:uppercase; letter-spacing:.08em; margin: 1.25rem 0 .5rem; }

    /* Quick pills */
    .quick-pills .badge { font-weight:600; padding: .5rem .75rem; }


   /* Highlight submenu boxes under Services */
    .dropdown-menu.mega a {
    transition: all 0.3s ease;
    color: #6c757d; /* default text color */
}

.dropdown-menu.mega a:hover,
.dropdown-menu.mega a:focus {
  background-color: #e6f7fb; /* light blue highlight */
  color: #044772; /* text color on hover */
  transform: translateY(-2px); /* subtle lift effect */
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-decoration: none;
}

/* MOBILE FIX */
@media (max-width:991px){
  .navbar-collapse { max-height:calc(100vh - 60px); overflow-y:auto; }
  .dropdown-menu.mega { position: static !important; display:none !important; transform:none !important; opacity:1 !important; pointer-events:auto !important; }
  .dropdown-toggle::after { float:right; }
  .dropdown.show>.dropdown-menu.mega { display:block !important; }
  .img-box {display: none;}
}

/*new code */

/* Force reduced submenu outer padding */
.dropdown.position-static .dropdown-menu.mega {
  padding: 0.6rem 0 !important; /* reduced from 1.25rem 0 */
}

/* Force reduced submenu inner padding */
.dropdown.position-static .dropdown-menu.mega .mega-inner {
  padding: 0.5rem !important; /* reduced from 1rem */
}

/* Force reduced link item padding */
.dropdown.position-static .dropdown-menu.mega .link-list .list-group-item {
  padding: 0.3rem 0 !important; /* reduced from 0.5rem 0 */
  line-height: 1.2 !important;  /* tighten spacing */
  font-size: 14px !important;   /* optional smaller text */
}


    .hero-banner {
      background: linear-gradient(to bottom, #e6f2ff, #ffffff);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .hero-banner::before, .hero-banner::after {
      content: '';
      position: absolute;
      background: #cfe8ff;
      border-radius: 50%;
      opacity: 0.4;
    }
    .hero-banner::before {
      width: 300px; height: 300px;
      top: -100px; left: -100px;
    }
    .hero-banner::after {
      width: 200px; height: 200px;
      bottom: -80px; right: -80px;
    }
    .video-box {
      background: #fff;
      border-radius: 15px;
      padding: 10px;
      display: inline-block;
      position: relative;
    }
    .play-btn {
      text-decoration: none;
    }
    .play-btn i {
      font-size: 3rem;
      color: #2cabc2;
    }
    .video-text {
      position: absolute;
      top: 10px;
      left: 15px;
      font-weight: bold;
      color: #2cabc2;
    }

    
    .main-slider {
      background: #111;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
      
    }

    .slider-container {
      position: relative;
      width: 80%;
      max-width: 1000px;
      height: 500px;
      overflow: hidden;
    }

    .slider-track {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
      transition: transform 0.8s ease;
    }

    .slide {
      position: absolute;
      width: 60%;
      height: 100%;
      transition: all 0.8s ease;
      border-radius: 15px;
      overflow: hidden;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Center active slide */
    .slide.active {
      z-index: 3;
      transform: scale(1) translateX(0);
      box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    }

    /* Left slide */
    .slide.left {
      transform: scale(0.7) translateX(-70%) translateY(10%);
      z-index: 2;
      filter: brightness(50%);
    }

    /* Right slide */
    .slide.right {
      transform: scale(0.7) translateX(70%) translateY(10%);
      z-index: 2;
      filter: brightness(50%);
    }

    /* All others hidden */
    .slide.hidden {
      opacity: 0;
      pointer-events: none;
    }

    /* Controls */
    .control {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.6);
      color: #fff;
      border: none;
      font-size: 28px;
      padding: 10px 15px;
      cursor: pointer;
      border-radius: 50%;
      z-index: 10;
    }

    .control.left { left: 20px; }
    .control.right { right: 20px; }

    /* card section */
    .section {
      text-align: center;
      padding: 50px 20px;
    }
    
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .card {
      background: #fff;
      border-radius: 12px;
      padding: 30px 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      text-align: center;
      transition: transform 0.2s ease;
    }
    .card:hover {
      transform: translateY(-5px);
    }
    .icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }
    .small-business { background: #e1f0ff; }
    .sales-cloud { background: #d6f8f3; }
    .service-cloud { background: #fde1e9; }
    .marketing-cloud { background: #ffe9d6; }
    .icon img {
      width: 100px;
      height: 100px;
    }
    .card h3 {
      margin: 15px 0 10px;
      font-size: 18px;
    }
    .card p {
      font-size: 14px;
      line-height: 1.5;
      color: #444;
    }
    .card a {
      display: inline-block;
      margin-top: 15px;
      color: #0a2540;
      font-weight: bold;
      text-decoration: none;
    }
    .card a:hover {
      text-decoration: underline;
    }

    
    /* Hero Section */
    .about-hero {
      text-align: center;
      padding: 80px 20px 50px;
      background: linear-gradient(135deg, #044772, #67daec);
      color: white;
      border-radius: 0 0 40px 40px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }
    .about-hero h1 {
      font-size: 2.8rem;
      margin-bottom: 15px;
    }
    .about-hero p {
      font-size: 1.15rem;
      max-width: 750px;
      margin: auto;
    }

    /* Intro Section */
    .about-intro {
      max-width: 1100px;
      margin: 60px auto;
      padding: 0 20px;
      text-align: center;
    }
    .about-intro h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #2d3436;
    }
    .about-intro p {
      font-size: 1.05rem;
      color: #555;
    }

    /* Why Choose Us */
    .choose-section {
      background: #eef5ff;
      padding: 100px 20px;
      text-align: center;
    }
    .choose-section h2 {
      font-size: 2rem;
      margin-bottom: 40px;
    }
    .choose-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
    }
    .choose-card {
      flex: 1;
      min-width: 280px;
      max-width: 500px;
      background: white;
      padding: 25px;
      border-radius: 20px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }
    .choose-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    .choose-card i {
      font-size: 2rem;
      color: #0984e3;
      margin-bottom: 12px;
    }
    .choose-card h3 {
      margin: 10px 0;
      font-size: 1.2rem;
    }
    .choose-card p {
      font-size: 0.95rem;
      color: #555;
    }

    /* 3Ps Section */
    .threep-section {
      max-width: 1100px;
      margin: 70px auto;
      padding: 0 20px;
    }
   
    .threep-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }
    .threep-card {
      flex: 1;
      min-width: 300px;
      background: white;
      padding: 30px;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .threep-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    .threep-card i {
      font-size: 2rem;
      margin-bottom: 12px;
      color: #044772;
    }
    .threep-card h3 {
      margin: 12px 0;
      font-size: 1.25rem;
    }
    .threep-card p {
      font-size: 0.95rem;
      color: #555;
    }

    @media (max-width: 768px) {
      .choose-cards, .threep-cards {
        flex-direction: column;
      }
    }

     .nx-cta-block {
    margin: 60px auto;
    max-width: 1400px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(90deg, #eef6ff 0%, #f7faff 100%);
    display: flex;
    align-items: center;
    padding: 40px 50px;
    gap: 40px;
    box-shadow: 0 12px 30px rgba(6,30,40,0.06);
  }

  /* left content */
  .nx-cta-text {
    flex: 1;
    text-align: left;
  }
  .nx-cta-text h2 {
    font-size: 2rem;
    font-weight: 500;
    color: #16303a;
    margin: 0 0 14px;
    line-height: 1.2;
  }
  .nx-cta-text p {
    font-size: 1.05rem;
    color: #445566;
    margin: 0 0 22px;
    max-width: 480px;
  }
  .nx-cta-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .nx-btn-primary {
    background: linear-gradient(90deg,#74b9ff,#a29bfe);
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    padding: 12px 22px;
    cursor: pointer;
    transition: transform .2s ease;
  }
  .nx-btn-primary:hover { transform: translateY(-2px); }

  .nx-btn-link {
    background: none;
    border: none;
    color: #0d6efd;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    padding: 12px 0;
  }

  /* right visual */
  .nx-cta-visual {
    flex: 1;
    text-align: right;
  }
  .nx-cta-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform .3s ease;
  }
  .nx-cta-visual img:hover { transform: scale(1.02); }

  /* responsive */
  @media (max-width: 900px) {
    .nx-cta-block { flex-direction: column; text-align: center; padding: 30px 20px; }
    .nx-cta-text { text-align: center; }
    .nx-cta-visual { text-align: center; }
  }

    /* FOOTER */
    .big-footer {
      background: #fff;
      padding: 54px 0 28px;
      color: var(--accent);
      border-top: 1px solid var(--border);
    }

    .big-footer .footer-top { padding-bottom: 26px; }
    .big-footer h5 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 0.65rem;
      color: var(--accent);
    }
    .big-footer p.lead {
      color: var(--muted);
      font-size: 0.95rem;
      margin-bottom: 1.25rem;
      line-height: 1.45;
    }

    /* left "services" smaller headings */
    .service-item h6 {
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--accent);
    }
    .service-item p {
      margin: 0;
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.35;
    }

    /* link columns */
    .footer-col h6 {
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 12px;
      text-transform: none;
    }
    .footer-links-list { list-style: none; padding: 0; margin: 0; }
    .footer-links-list li { margin-bottom: 8px; }
    .footer-links-list a {
      color: var(--accent);
      text-decoration: none;
      font-size: 0.92rem;
      transition: color .18s ease;
    }
    .footer-links-list a:hover { color: var(--primary); text-decoration: none; }

    /* Contact column */
    .contact-wrap { display:flex; flex-direction:column; align-items:flex-end; gap:12px; }
    .contact-wrap .btn-cta {
      border: 2px solid #044772;
      color: #044772;
      padding: 10px 22px;
      border-radius: 6px;
      background: transparent;
      font-weight:700;
      letter-spacing: .6px;
      text-decoration: none;
    }
    .contact-wrap .btn-cta:hover {
      background: #67daec ;
      color: white;
      text-decoration:none;
    }
    .contact-phone { font-weight:700; color: var(--accent); margin-top: 6px; }
    @media (max-width:991.98px){
      .contact-wrap { align-items:flex-start; }
    }

    /* social round icons in contact */
    .social-round a {
      display:inline-flex; align-items:center; justify-content:center;
      width:36px; height:36px; border-radius:50%;
      background:#f4f6f8; color:var(--accent); text-decoration:none;
      margin-left:6px; border:1px solid var(--border); transition: all .18s ease;
    }
    .social-round a:hover { background:var(--primary); color:#044772; transform: translateY(-2px); }

    /* bottom bar */
    .footer-bottom {
      border-top: 1px solid var(--border);
      padding: 18px 0 10px;
      margin-top: 22px;
      display:flex; align-items:center; gap:12px;
    }
    .footer-bottom .logo img { height:32px; }
    .footer-bottom .legal { font-size: 0.88rem; color: var(--muted); text-align:center; }
    .footer-bottom .legal a { color: var(--muted); text-decoration:none; margin:0 8px; }
    .footer-bottom .legal a:hover { color: var(--primary); }

    /* small adjustments */
    .footer-top .row > [class*="col-"] { margin-bottom: 18px; }
    .footer-top .col-md-5 .row .col-6 { padding-right: 18px; padding-left:0; }


    

  /* netsuite Section */
  .netsuite {
    height: 50vh;
    background: linear-gradient(135deg, #00bcd4, #4dd0e1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
    padding: 0 15px;
  }
  .netsuite::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1557683316-973673baf926?auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
    opacity: 0.15;
  }
  .netsuite h1 {
    font-size: 3rem;
    z-index: 2;
    animation: fadeIn 1s ease-in-out forwards;
  }
  .netsuite p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 1rem auto 0;
    z-index: 2;
    animation: fadeIn 1.5s ease-in-out forwards;
  }

  @keyframes fadeIn {
    0% { opacity: 0; transform: translateY(30px);}
    100% { opacity: 1; transform: translateY(0);}
  }




  /* Products */
  .product-logo {
    height: 40px;
    margin-right: 0.8rem;
  }

  /* Alternating Section Backgrounds */
  .section-light { background: #e0f7fa; padding: 80px 15px; }
  .section-dark { background: #ffffff; padding: 80px 15px; }

  /* Timeline */
  .timeline {
    position: relative;
    margin: 2rem 0;
  }
  .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #00bcd4;
    transform: translateX(-50%);
  }
  .timeline-item {
    position: relative;
    width: 50%;
    padding: 1rem 2rem;
    transition: transform 0.3s;
  }
  .timeline-item.left { left: 0; text-align: right; }
  .timeline-item.right { left: 50%; }
  .timeline-item::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: #00bcd4;
    border-radius: 50%;
    z-index: 1;
  }
  .timeline-item.left::before { right: -10px; }
  .timeline-item.right::before { left: -10px; }

  .timeline-item:hover {
    transform: scale(1.02);
  }

  @media (max-width: 768px) {
    .timeline::before { left: 8px; }
    .timeline-item { width: 100%; padding-left: 30px; padding-right: 15px !important; text-align: left !important; }
    .timeline-item.left, .timeline-item.right { left: 0 !important; }
    .timeline-item::before { left: 0 !important; }
  }


  
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-panel {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
  height: 100%;
  min-height: 650px;
  position: relative;
  overflow: hidden;
}

.contact .contact-info-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/misc/misc-1.webp") center/cover;
  opacity: 0.1;
  z-index: 1;
}

.contact .contact-info-panel .panel-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 992px) {
  .contact .contact-info-panel .panel-content {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-panel .panel-content {
    padding: 40px 30px;
  }
}

.contact .contact-info-panel .info-header {
  margin-bottom: 50px;
}

.contact .contact-info-panel .info-header h2 {
  font-size: 42px;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .contact .contact-info-panel .info-header h2 {
    font-size: 32px;
  }
}

.contact .contact-info-panel .info-header p {
  font-size: 18px;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  line-height: 1.6;
  margin-bottom: 0;
}

.contact .contact-info-panel .info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 50px;
  flex: 1;
}

.contact .contact-info-panel .info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: color-mix(in srgb, var(--contrast-color), transparent 90%);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact .contact-info-panel .info-card:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  transform: translateX(10px);
}

.contact .contact-info-panel .info-card .card-icon {
  width: 50px;
  height: 50px;
  background: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-info-panel .info-card .card-icon i {
  font-size: 22px;
}

.contact .contact-info-panel .info-card .card-content {
  flex: 1;
}

.contact .contact-info-panel .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 8px;
}

.contact .contact-info-panel .info-card .card-content p {
  font-size: 14px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin-bottom: 0;
  line-height: 1.5;
}

.contact .contact-info-panel .social-section {
  border-top: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
  padding-top: 30px;
}

.contact .contact-info-panel .social-section h5 {
  font-size: 16px;
  color: var(--contrast-color);
  margin-bottom: 20px;
  font-weight: 500;
}

.contact .contact-info-panel .social-section .social-icons {
  display: flex;
  gap: 15px;
}

.contact .contact-info-panel .social-section .social-icons .social-icon {
  width: 44px;
  height: 44px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  color: var(--contrast-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact .contact-info-panel .social-section .social-icons .social-icon i {
  font-size: 18px;
}

.contact .contact-info-panel .social-section .social-icons .social-icon:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-3px);
}

.contact .contact-form-wrapper {
  background: var(--surface-color);
  padding: 80px 60px;
  height: 100%;
  min-height: 650px;
}

  /* Lists */
  .bi-check-circle-fill { color: #00bcd4; margin-right: 0.5rem; }


    /* Mobile adjustments */
    @media (max-width: 991.98px){
      .dropdown.position-static .dropdown-menu.mega {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        border-radius:0;
        margin:0;
        padding:.5rem 0;
        display:none; /* hidden initially */
      }
      .dropdown.show > .dropdown-menu.mega { display:block; }
      .mega-inner { padding:1rem .5rem; }
      /* remove white gap on small screens */
      body, html { overflow-x: hidden; }
      .container, .container-fluid { padding-left: 0.5rem; padding-right:0.5rem; }

       .footer-top { padding-bottom: 10px; }
      .big-footer { padding: 30px 12px 18px; }
      .footer-bottom { flex-direction: column; gap:8px; text-align:center; }
      .contact-wrap { width:100%; align-items:flex-start; }
    }




    /*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .services-grid {
  margin-bottom: 5rem;
}

.services .services-grid .featured-service-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  position: relative;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 93%);
}

.services .services-grid .featured-service-card .service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 20%));
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-grid .featured-service-card .service-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #4facfe 30%));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 1.5rem;
  transition: transform 0.4s ease;
}

.services .services-grid .featured-service-card .service-icon-large i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.services .services-grid .featured-service-card h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.services .services-grid .featured-service-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.services .services-grid .featured-service-card .feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.services .services-grid .featured-service-card .feature-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

.services .services-grid .featured-service-card .feature-highlights .highlight-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.services .services-grid .featured-service-card .feature-highlights .highlight-item span {
  font-size: 0.95rem;
  color: var(--default-color);
  font-weight: 500;
}

.services .services-grid .featured-service-card .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #667eea 30%));
  border: none;
  color: var(--contrast-color);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-grid .featured-service-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.services .services-grid .featured-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 88%);
}

.services .services-grid .featured-service-card:hover .service-icon-large {
  transform: scale(1.1);
}

.services .services-grid .service-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .services-grid .service-card .service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.services .services-grid .service-card .service-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.services .services-grid .service-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.services .services-grid .service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
}

.services .services-grid .service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.services .services-grid .service-card .service-link i {
  transition: transform 0.3s ease;
}

.services .services-grid .service-card .service-link:hover {
  color: var(--heading-color);
}

.services .services-grid .service-card .service-link:hover i {
  transform: translateX(4px);
}

.services .services-grid .service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.services .services-grid .service-card:hover .service-icon {
  transform: scale(1.1);
}

.services .services-tabs .nav-pills {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  padding: 8px;
  display: inline-flex;
  margin: 0 auto;
}

.services .services-tabs .nav-pills .nav-item .nav-link {
  background: transparent;
  border: none;
  color: var(--default-color);
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 0;
}

.services .services-tabs .nav-pills .nav-item .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-tabs .nav-pills .nav-item .nav-link:hover:not(.active) {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.services .services-tabs .tab-service-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .services-tabs .tab-service-card .service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.services .services-tabs .tab-service-card .service-icon i {
  font-size: 1.6rem;
  color: var(--accent-color);
}

.services .services-tabs .tab-service-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.services .services-tabs .tab-service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
}

.services .services-tabs .tab-service-card .tab-service-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  display: inline-block;
  transition: all 0.3s ease;
}

.services .services-tabs .tab-service-card .tab-service-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .services-tabs .tab-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-tabs .tab-service-card:hover .service-icon {
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .services .services-grid .featured-service-card {
    margin-bottom: 2rem;
    padding: 2.5rem 2rem;
  }

  .services .services-grid .featured-service-card .feature-highlights {
    margin-bottom: 2rem;
  }

  .services .services-tabs .nav-pills {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .services .services-tabs .nav-pills .nav-item {
    width: 100%;
  }

  .services .services-tabs .nav-pills .nav-item .nav-link {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .services .services-grid {
    margin-bottom: 4rem;
  }

  .services .services-grid .featured-service-card {
    padding: 2rem 1.5rem;
  }

  .services .services-grid .featured-service-card .service-icon-large {
    width: 70px;
    height: 70px;
  }

  .services .services-grid .featured-service-card .service-icon-large i {
    font-size: 1.8rem;
  }

  .services .services-grid .featured-service-card h3 {
    font-size: 1.5rem;
  }

  .services .services-grid .featured-service-card .feature-highlights .highlight-item {
    justify-content: flex-start;
  }

  .services .services-grid .service-card {
    padding: 1.5rem;
  }

  .services .services-tabs .tab-service-card {
    padding: 2rem 1.5rem;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/

.lead {
  font-size: 1rem;
  font-weight: 400;
}

.features .features-content .lead {
  text-align: left;
  margin-bottom: 0;
}

.features .features-image {
  position: relative;
}

.features .features-image img {
  border-radius: 8px;
  height: 200px;
}

.features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0;
  transition: all 0.3s ease;
}

.features .feature-item:hover {
  transform: translateY(-5px);
}

.features .feature-item:hover .feature-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #0984e3, color-mix(in srgb, #0984e3, #0984e3 30%));
}

.features .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #044772, color-mix(in srgb, #044772, #0984e3 20%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.features .feature-icon i {
  font-size: 24px;
  color: white;
}

.features .feature-content h4 {
  font-size: 20px;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 12px;
  line-height: 1.4;
  text-align: left;
}

.features .feature-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .features .features-content {
    text-align: center;
  }

  .features .features-content h2 {
    font-size: 28px;
  }

  .features .features-grid {
    margin-top: 60px;
    gap: 30px;
  }

  .features .feature-item {
    gap: 16px;
  }

  .features .feature-icon {
    width: 50px;
    height: 50px;
  }

  .features .feature-icon i {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .features .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .features .features-content h2 {
    font-size: 24px;
  }

}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .features-list {
  margin-bottom: 30px;
}

.features-2 .features-list .feature-item {
  display: flex;
  gap: 20px;
  
  padding: 15px;
  background: var(--surface-color);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  text-align: left;
  height: 100%;
}

.features-2 .features-list .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.features-2 .features-list .feature-item .feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, #67daec, transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, #67daec, transparent 70%);
}

.features-2 .features-list .feature-item .feature-icon i {
  font-size: 22px;
  color: #044772;
}

.features-2 .features-list .feature-item .feature-content {
  flex: 1;
}

.features-2 .features-list .feature-item .feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.features-2 .features-list .feature-item .feature-content p {
 
  margin-bottom: 12px;
  line-height: 1.5;
}

.features-2 .features-list .feature-item .feature-content .feature-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.features-2 .features-list .feature-item .feature-content .feature-tags span {
  background: color-mix(in srgb, #044772, transparent 95%);
  color: #044772;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.features-2 .cta-section {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: center;
}

.features-2 .cta-section .btn-primary,
.features-2 .cta-section .btn-secondary {
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.features-2 .cta-section .btn-primary {
  background: #044772;
  color: white;
}

.features-2 .cta-section .btn-primary:hover {
  background: color-mix(in srgb, #044772, black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, #67daec, transparent 60%);
}

.features-2 .cta-section .btn-secondary {
  background: transparent;
  color: var(--heading-color);
  border: 2px solid color-mix(in srgb, #044772, transparent 80%);
}

.features-2 .cta-section .btn-secondary:hover {
  border-color: #044772;
  color: #044772;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .features-2 .features-list .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .features-2 .features-list .feature-item .feature-icon {
    align-self: center;
  }

  .features-2 .cta-section {
    flex-direction: column;
  }

  .features-2 .cta-section .btn-primary,
  .features-2 .cta-section .btn-secondary {
    text-align: center;
    justify-content: center;
  }

  .features-2 .features-content h2 {
    font-size: 24px;
  }
}

/* Global utility class for mobile center alignment */
@media (max-width: 768px) {
  .mobile-center {
    display: flex !important;
    justify-content: center !important; /* centers horizontally */
    align-items: center !important;     /* centers vertically if height allows */
    text-align: center !important;      /* centers text inside */
  }
}




.flip-box {
  
  text-align: center;
  background-color: transparent;
  width: 250px;
  height: 200px;
  perspective: 1000px; /* 3D depth */
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.flip-box-inner {

min-width: 280px;
border-radius: 20px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
text-align: center;

  position: relative;
  width: 100%;
  height: 100%;
  max-width: 330px;
  background: white;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

.flip-box-front, .flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  
  border-radius: 20px;
}

.flip-box-front {
   font-size: 2rem;
      color: #0984e3;
      margin-bottom: 12px;
      margin: 10px 0;
      font-size: 1.2rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-box-back {
  background: #0984e3;
  color: white;
  font-size: 0.95rem;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

 .industries-modern {
    background: linear-gradient(145deg, #f5f9fc, #ffffff);
  }

  .industry-item {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border-radius: 12px;
    padding: 1rem;
  }

  .industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.08);
  }

  .industry-icon {
    color: #03363D;
    transition: transform 0.3s, color 0.3s;
  }

  .industry-item:hover .industry-icon {
    color: #044772; /* accent color on hover */
    transform: scale(1.2);
  }

  .industry-item h5 {
    margin-bottom: 0.3rem;
  }

  .industry-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
  }

  .case-study-section {
 
}

.case-study-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.4s ease;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #67daec;
  color: white;
  padding: 20px 25px;
  cursor: pointer;
  flex-wrap: wrap;
}

.case-header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.case-header-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  
}

.case-header-text h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.case-header-text p {
  margin: 4px 0 0;
  font-size: 14px;
  opacity: 0.9;
}

.toggle-icon {
  transition: transform 0.3s ease;
  font-size: 18px;
}

.case-study-card.expanded .toggle-icon {
  transform: rotate(180deg);
}

/* Expandable Content */
.case-content {
  display: none;
  padding: 25px;
  gap: 30px;
  align-items: flex-start;
}

.case-study-card.expanded .case-content {
  display: flex;
  flex-wrap: wrap;
}

.case-image img {
  border-radius: 12px;
  width: 100%;
  max-width: 450px;
  
}

.case-text {
  flex: 1;
  min-width: 300px;
}

.case-text h4 {
  color: #0d47a1;
  font-weight: 600;
  margin-top: 20px;
}

.case-text ul {
  padding-left: 20px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.case-text p {
  color: #444;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .case-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .case-header-img {
    width: 100%;
    height: auto;
    max-width: 320px;
  }
  .case-header-text h3 {
    font-size: 18px;
  }
  .case-content {
    flex-direction: column;
  }
}


/* Section Styling */
.solutions-section {
  background: #eef5ff;
  padding: 80px 20px;
  text-align: center;
  
}



/* Grid Layout */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Styling */
.solution-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: left;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.solution-card i {
  font-size: 2rem;
  color: #044772;
  margin-bottom: 12px;
}

.solution-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #044772;
  margin-bottom: 10px;
}

.solution-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

/* Section Styling */
.solutions-section {
  background: #eef5ff;
  padding: 80px 20px;
  text-align: center;
  
}



/* Grid Layout */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Styling */
.solution-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: left;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.solution-card i {
  font-size: 2rem;
  color: #0984e3;
  margin-bottom: 12px;
}

.solution-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0984e3;
  margin-bottom: 10px;
}

.solution-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

.case-study-section {

}

.case-study-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.4s ease;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #67daec;
  color: white;
  padding: 20px 25px;
  cursor: pointer;
  flex-wrap: wrap;
}

.case-header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.case-header-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  
}

.case-header-text h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.case-header-text p {
  margin: 4px 0 0;
  font-size: 14px;
  opacity: 0.9;
}

.toggle-icon {
  transition: transform 0.3s ease;
  font-size: 18px;
}

.case-study-card.expanded .toggle-icon {
  transform: rotate(180deg);
}

/* Expandable Content */
.case-content {
  display: none;
  padding: 25px;
  gap: 30px;
  align-items: flex-start;
}

.case-study-card.expanded .case-content {
  display: flex;
  flex-wrap: wrap;
}

.case-image img {
  border-radius: 12px;
  width: 100%;
  max-width: 450px;
  
}

.case-text {
  flex: 1;
  min-width: 300px;
}

.case-text h4 {
  color: #0d47a1;
  font-weight: 600;
  margin-top: 20px;
}

.case-text ul {
  padding-left: 20px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.case-text p {
  color: #444;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .case-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .case-header-img {
    width: 100%;
    height: auto;
    max-width: 320px;
  }
  .case-header-text h3 {
    font-size: 18px;
  }
  .case-content {
    flex-direction: column;
  }
}

.netsuite-partner {
  background: #f5f8ff;
  padding: 80px 20px;
  text-align: center;
  
}

.netsuite-partner .intro {
  color: #555;
  font-size: 1rem;
  max-width: 850px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}
.service-item {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: left;
  font-size: 0.95rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-item i {
  color: #1565c0;
  font-size: 1.4rem;
  min-width: 30px;
}
.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.case-study-section {
  
}

.case-study-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.4s ease;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #67daec;
  color: white;
  padding: 20px 25px;
  cursor: pointer;
  flex-wrap: wrap;
}

.case-header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.case-header-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  
}

.case-header-text h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.case-header-text p {
  margin: 4px 0 0;
  font-size: 14px;
  opacity: 0.9;
}

.toggle-icon {
  transition: transform 0.3s ease;
  font-size: 18px;
}

.case-study-card.expanded .toggle-icon {
  transform: rotate(180deg);
}

/* Expandable Content */
.case-content {
  display: none;
  padding: 25px;
  gap: 30px;
  align-items: flex-start;
}

.case-study-card.expanded .case-content {
  display: flex;
  flex-wrap: wrap;
}

.case-image img {
  border-radius: 12px;
  width: 100%;
  max-width: 450px;
  
}

.case-text {
  flex: 1;
  min-width: 300px;
}

.case-text h4 {
  color: #0d47a1;
  font-weight: 600;
  margin-top: 20px;
}

.case-text ul {
  padding-left: 20px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.case-text p {
  color: #444;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .case-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .case-header-img {
    width: 100%;
    height: auto;
    max-width: 320px;
  }
  .case-header-text h3 {
    font-size: 18px;
  }
  .case-content {
    flex-direction: column;
  }
}


/* Section Styling */
.solutions-section {
  background: #eef5ff;
  padding: 80px 20px;
  text-align: center;
  
}



/* Grid Layout */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Styling */
.solution-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: left;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.solution-card i {
  font-size: 2rem;
  color: #044772;
  margin-bottom: 12px;
}

.solution-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #044772;
  margin-bottom: 10px;
}

.solution-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .image-section {
  position: relative;
}

.about .image-section .primary-image {
  position: relative;
  margin-bottom: 2rem;
}

.about .image-section .primary-image img {
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.about .image-section .primary-image .experience-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background-color: var(--surface-color);
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .about .image-section .primary-image .experience-badge {
    top: 1rem;
    right: 1rem;
    padding: 1rem;
  }
}

.about .image-section .primary-image .experience-badge .years {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about .image-section .primary-image .experience-badge .text {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about .image-section .image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about .image-section .image-grid .grid-img {
  border-radius: 6px;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about .image-section .image-grid .grid-img:hover {
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .about .image-section {
    margin-bottom: 3rem;
  }
}

.about .content-section {
  padding-left: 2rem;
}

@media (max-width: 992px) {
  .about .content-section {
    padding-left: 0;
  }
}

.about .section-intro {
  margin-bottom: 3rem;
}

.about .section-intro .company-badge {
  display: inline-block;
  
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.about .section-intro h2 {
  
  font-size: 2.125rem;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  font-weight: 600;
  
}

@media (max-width: 768px) {
  .about .section-intro h2 {
    font-size: 1.75rem;
  }
}

.about .section-intro .intro-text {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.about .achievement-list {
  margin-bottom: 3rem;
}

.about .achievement-list .achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.about .achievement-list .achievement-item:last-child {
  margin-bottom: 0;
}

.about .achievement-list .achievement-item .achievement-icon {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, #044772, transparent 90%);
  color: #044772;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about .achievement-list .achievement-item .achievement-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  text-align: left;
}

.about .achievement-list .achievement-item .achievement-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
  text-align: left;
}

.about .action-section {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 576px) {
  .about .action-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.about .action-section .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about .action-section .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-1px);
}

.about .action-section .contact-info .contact-label {
  display: block;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.25rem;
}

.about .action-section .contact-info .phone-number {
  font-size: 1.125rem;
  color: var(--heading-color);
  font-weight: 600;
}

.about .metrics-section {
  margin-top: 5rem;
  padding: 3rem 0;
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 70%);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.about .metrics-section .metric-card {
  padding: 1.5rem 1rem;
}

.about .metrics-section .metric-card .metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .about .metrics-section .metric-card .metric-value {
    font-size: 2rem;
  }
}

.about .metrics-section .metric-card .metric-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
  margin: 0;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

.sectionblue {
  
  background-color: #eef5ff;
  padding: 10px;
}

.sectionpadding {
  padding: 5%;
}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  text-align: center;
  margin-bottom: 40px;
  transition: all 0.3s ease-in-out;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 30px;
}

.team .team-member .member-img img {
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: auto;
  filter: grayscale(100%);
}

.team .team-member .member-info h4 {
  font-weight: 300;
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--heading-color);
  line-height: 1.3;
}

.team .team-member .member-info span {
  display: block;
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.team .team-member .member-info p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
  padding: 0 10px;
}

.team .team-member .member-info .social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team .team-member .member-info .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 50%;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

.team .team-member .member-info .social a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.team .team-member:hover .member-img img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

@media (max-width: 992px) {
  .team .team-member .member-info h4 {
    font-size: 1.3rem;
  }

  .team .team-member .member-info p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .team .team-member .member-info h4 {
    font-size: 1.2rem;
  }

  .team .team-member .member-info p {
    padding: 0;
    font-size: 0.85rem;
  }

  .team .team-member .member-info .social {
    gap: 12px;
  }

  .team .team-member .member-info .social a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}


.blog-section {
  
  text-align: center;
}

.section-title {
  color: #0d47a1;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 40px;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-content: center;
  margin-bottom: 40px;
}

.blog-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  flex-grow: 1;
}

.blog-content h3 {
  font-size: 1.1rem;
  color: #0d47a1;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.read-more {
  color: #1565c0;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more i {
  margin-left: 6px;
  font-size: 0.85rem;
}

.read-more:hover {
  color: #0d47a1;
}

@media (max-width: 992px) {
  .blog-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-cards {
    grid-template-columns: 1fr;
  }
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.pagination a {
  padding: 8px 14px;
  border-radius: 6px;
  background-color: #e3f2fd;
  color: #0d47a1;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination a:hover {
  background-color: #bbdefb;
  color: #0d47a1;
}

.pagination a.active {
  background-color: #0d47a1;
  color: #fff;
  font-weight: 600;
}

.pagination a.arrow {
  font-size: 1rem;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination a.arrow i {
  font-size: 1rem;
}

    .blog-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 60px 20px;
  flex-wrap: wrap;
}

.nav-all {
  font-size: 16px;
  color: #0073aa;
  text-decoration: none;
  margin-bottom: 10px;
}

.nav-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex: 1;
}

.nav-btn {
  padding: 10px 20px;
  background-color: #0073aa;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.nav-btn:hover {
  background-color: #005f8d;
}

/* Mobile-friendly adjustments */
@media (max-width: 768px) {
    .blog-card img {
        height: 150px; /* reduce height for smaller screens */
    }
}

@media (max-width: 480px) {
    .blog-card img {
        height: 120px; /* even smaller for phones */
    }
}


/*--------------------------------------------------------------
# contact Section
--------------------------------------------------------------*/
     

    /* Info Boxes */
    .contact-info-boxes {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      padding: 50px 20px;
    }
    .info-card {
      flex: 1;
      min-width: 220px;
      max-width: 280px;
      background: white;
      padding: 25px;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .info-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    .info-card i {
      font-size: 2rem;
      color: #044772;
      margin-bottom: 10px;
    }
    .info-card h3 {
      margin: 10px 0 5px;
      font-size: 1.2rem;
    }
    .info-card p {
      font-size: 0.95rem;
      color: #555;
    }

    /* Contact Form + Map */
    .contact-main {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      padding: 50px 20px;
      justify-content: center;
    }
    .contact-form-box {
      flex: 1;
      min-width: 320px;
      background: white;
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }
    .contact-form-box:hover {
      transform: translateY(-5px);
    }
    .contact-form-box h2 {
      margin-bottom: 20px;
    }
    .contact-form-box input,
    .contact-form-box textarea {
      width: 100%;
      padding: 12px 15px;
      margin-bottom: 15px;
      border-radius: 10px;
      border: 1px solid #ddd;
      font-size: 0.95rem;
      transition: border-color 0.3s ease;
    }
    .contact-form-box input:focus,
    .contact-form-box textarea:focus {
      border-color: #044772;
      outline: none;
    }
    .contact-form-box button {
      padding: 12px 25px;
      background: #044772;
      color: white;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      font-size: 1rem;
      font-weight: bold;
      transition: background 0.3s ease;
    }
    .contact-form-box button:hover {
      background: #67daec;
    }

    .map-box {
      flex: 1;
      min-width: 320px;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }
    

    /* FAQ Section */
    .faq-section {
      padding: 60px 20px;
      background: #eef5ff;
    }
    .faq-section h2 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 2rem;
    }
    .faq-item {
      max-width: 800px;
      margin: 10px auto;
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .faq-question {
      padding: 15px 20px;
      font-weight: bold;
      cursor: pointer;
      background: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      color: #444;
      font-size: 0.95rem;
    }
    .faq-item.active .faq-answer {
      max-height: 200px;
      padding: 15px 20px;
    }
    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }
    .faq-question i {
      transition: transform 0.3s ease;
    }

    @media (max-width: 768px) {
      .contact-main {
        flex-direction: column;
      align-items: center;
      }
      .contact-info-boxes {
        flex-direction: column;
      }
    }

      .leaflet-control-attribution {
  display: none !important;
}

  #officeMap {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  }
  @media(max-width:600px){
    #officeMap { height: 360px; }
  }

  

.intro-block {
  padding-right: 1rem;
  border-right: 2px solid #67daec;
}


.content-block {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.03);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.content-block:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.section-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #044772;
  margin-bottom: 0.75rem;
}

.text-wrap p {
  margin-bottom: 0.5rem;
  color: #333;
}



