:root {
  /* Brand (from logo) */
  --brand-navy: #2d4c7a;
  /* JDNT text */
  --brand-gray: #9a9a9a;
  /* Associates text */
  --brand-light: #b7c6d7;
  /* Light accent */
  --brand-darkgray: #848484;
  /* Chartered Accountants text */

  /* Extended palette */
  --bg: #f7f9fc;
  --surface: #ffffff;
  --ink: #0e1a2b;
  --muted: #6c7a8c;
  --ring: rgba(45, 76, 122, .18);
}

/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* Header */
header {
  position: fixed;
  /* stays on top during scroll */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  transition: background 0.3s ease, padding 0.3s ease;
  backdrop-filter: saturate(140%) blur(8px);
  background: rgba(255, 255, 255, 0.207);
  /* Dark overlay instead of color-mix */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);


  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .container.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

/* Default Navbar Layout */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  /* space between the two logos */
}

.brand img {
  max-height: 50px;
  height: auto;
  width: auto;
}

/* Make logos shrink on small screens */

/* @media (max-width: 320px) {
   .brand img {
    height: 20px !important; 
  }
} */
@media (min-width: 320px) and (max-width: 480px) {
  .brand img {
    height: 24px !important;
    /* smaller logo on mobile */
  }

  header .menu {
    gap: 5px !important;
  }

  header {
    padding: 0px !important;
  }

  header .menu a {
    border-bottom: 1px solid #00225418;
    /* width: 100%; */

  }

  .hero .carousel-item {

    padding: 48px 0px !important;
  }

  .carousel-item {
    background-position: right !important;
  }
  .banner-text {
  padding: 0px 0px 0px 0px !important;
}

  #about {
    background-image: url(../assets/images/backgrounds/abt-sctn-ph-bg.jpg) !important;
    /* background-size: cover; */
    /* background-position: center; */
  }

  .vision-section {
    background-position: right !important;
    background-size: auto !important;
  }

  .vision-section p {
    width: 100% !important;
  }

  .vision-section ul {
    width: 100% !important;
  }

  .cta {
    display: block !important;
  }

  .team-page {

    background-image: url(../assets/images/backgrounds/team-ph-bg.png) !important;
    /* background-position: 0% !important; */
  }

  .about-page {

    background-image: url(../assets/images/backgrounds/about-ph-bg.png) !important;

  }

  .contact-page {

    background-image: url(../assets/images/backgrounds/cntct-ph-bg.png) !important;
    /* background-position: 0% !important; */
  }

  .counsulting-page {

    background-image: url(../assets/images/backgrounds/cnslt-ph-bg.png) !important;
    /* background-position: 0% !important; */
  }

  .services-page {

    background-image: url(../assets/images/backgrounds/servic-ph-bg.png) !important;
    /* background-position: 0% !important; */
  }
  .career-page {

    background-image: url(../assets/images/backgrounds/about-ph-bg.png) !important;
    /* background-position: 0% !important; */
  }

  .card-bnr-grph {
    display: none !important;
  }

  .hero .carousel-item {
    padding: 150px 0px !important;
  }

}

/* Fix: Logo & Toggle button on one line */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Example toggle button */
.toggle {
  display: none;
  /* hidden by default */
}

@media (max-width: 1366px) {
  .banner-text {

    margin-top: 97px !important;
  }

  .banner-text p {
    max-width: 350px !important;

  }

  header .container {
    margin: 0px !important;
  }

  header .menu {

    gap: 10px !important;
  }

  .menu a {
    font-size: 15px !important;
  }

  .brand img {
    /*height: 70px !important;*/


  }

  /* Keep logo + toggle side by side */

}
/* @media (max-width: 1366px) {
  .banner-text {

    margin-top: 97px !important;
  }
} */

/* Show toggle on small screens */
@media (max-width: 768px) {
  .toggle {
    display: block;
    cursor: pointer;
  }

  /* Keep logo + toggle side by side */
  .navbar {
    flex-wrap: nowrap;
  }
}

/* Header links and buttons forced to white */
header .menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

header .menu a {
  text-decoration: none;
  color: #2d4c7a;
  font-weight: 500;
  transition: color 0.3s ease;
}

header .menu a:hover {
  color: var(--brand-light) !important;
}

header .btn {
  --_bg: var(--brand-light);
  --_fg: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

header .btn.alt {
  --_bg: transparent;
  --_fg: #fff;
  border: 1px solid #fff;
}

header .brand img {
  height: 50px;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  z-index: 1000;
  padding: 10px;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  border-bottom: 1px solid #00225418;
}

.dropdown-content a:hover {
  background: #f5f5f5;
  color: #0059df;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Button */
.btn.alt {
  background: #2d4c7a;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 5px;
}

.btn.alt:hover {
  background: #1a2f52;
}

/* Hamburger Button */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #1a2f52 !important;
}

/* Responsive */
/* @media (max-width: 480px) {
  .menu-toggle {
  
  width: 100% ;

  }
} */


@media (max-width: 991px) {
  .menu-toggle {
    display: block;
  }


  header .menu {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 220px;
    display: none;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
  }

  header .menu a,
  header .dropdown {
    width: 100%;
    padding: 10px 0;
  }

  header .menu.show {
    display: flex;
  }

  /* Dropdown inside mobile */
  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    display: none;
    background: transparent;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }
}




.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.brand img {
  height: 42px;
  width: auto;
}

.brand .tag {
  font-weight: 600;
  color: var(--brand-navy);
  letter-spacing: .2px;
}

.menu {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.menu a {
  color: var(--muted);
  font-weight: 500;
  position: relative;
  padding: .4rem .2rem;
}

.menu a:hover {
  color: var(--brand-navy);
}

.btn {
  --_bg: var(--brand-navy);
  --_fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .78rem 1rem;
  border-radius: 14px;
  background: var(--_bg);
  color: var(--_fg);
  border: 1px solid color-mix(in oklab, var(--_bg) 84%, #000 16%);
  box-shadow: 0 6px 18px -6px var(--ring);
  transition: .25s ease;
  font-weight: 600;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px -10px var(--ring);
}

.btn.alt {
  --_bg: #fff;
  --_fg: var(--brand-navy);
  border-color: color-mix(in oklab, var(--brand-navy) 24%, #000 0%);
  outline: 1px solid color-mix(in oklab, var(--brand-navy) 18%, #fff 82%);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0px;
  /* full screen */
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4.5rem 0 3rem;
}

.eyebrow {
  color: #fff;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(2rem, 3.2vw + 1rem, 3.4rem);
  line-height: 1.05;
  margin: .6rem 0 1rem;
}

.lead {
  color: var(--muted);
  font-size: clamp(.98rem, .5vw + .9rem, 1.15rem);
}

.cta-row {
  display: flex;
  gap: .8rem;
  align-items: center;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.hero {
  position: relative;
  color: #fff;
}

.hero .carousel-item {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 100px 0px;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.35));
  /* gradient for readability */
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* bring controls/indicators above the overlay */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next,
#heroCarousel .carousel-indicators {
  z-index: 3;
}

/* keep your existing .wrap layout intact */
/* Ensure text is readable */
.hero h1,
.hero .lead,
.hero .eyebrow,
.hero .cta-row,
.hero .trust {
  color: #000000;
  /* text-align: center; */
}


/* Decorative wave */
.wave {
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  z-index: 2;
  bottom: 0px;
}

.wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Trust bar */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  padding: 1.4rem 0 0;
  color: var(--brand-darkgray);
}

.trust .card {
  
   display: flex;
    align-items: center;
    background: rgba(6, 29, 101, 0.367); /* semi-transparent */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    gap: 0.8rem;

    /* 🔹 Blur effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
}

.badge {
  font-size: .82rem;
  font-weight: 600;
  color: var(--brand-navy);
  background: color-mix(in oklab, var(--brand-light) 22%, #fff 78%);
  padding: .3rem .6rem;
  border-radius: 999px;
}

/* Services */
section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(3rem, 1.8vw + 1rem, 2.2rem);
  margin: .2rem 0 .6rem;
  font-weight: 700;
}

.section-head p {
  color: var(--muted);
  margin-inline: auto;
}

.grid {
  display: grid;
  gap: 1.2rem;
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

/* #services{
background-image: url(../assets/images/backgrounds/Frame\ 30.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position:center ;
    } */
.service {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border-radius: 12px;
  background: #878ebd71;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* background-image: url(../assets/images/backgrounds/Group\ 91\ \(1\).png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position:center ; */

}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


/* Learn More Button */
.btn-learn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  background: #2d4c7a;
  /* logo color */
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.btn-learn:hover {
  background: #ffffff;
  border: 1px solid #0f223d;
  color: #0f223d;
  /* darker shade for hover */
}

.service:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -18px var(--ring);
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: color-mix(in oklab, var(--brand-navy) 10%, #fff);
  color: var(--brand-navy);
  font-weight: 700;
  margin-bottom: 10px;
}

.service h3 {
  margin: .1rem 0 .2rem;
  font-size: 1.05rem;
}

.service p {
  color: #484848;
  font-size: .95rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* limit to ~3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  ;
}

/* About */
#about {
  /* background-image: url(../assets/images/backgrounds/Frame\ 7.jpg); */
  background-image: url(../assets/images/backgrounds/abt-hmbg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.about .media {
  position: relative;
}

.about .media .logo-mark {
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 92px;
  opacity: .16;
  filter: grayscale(100%);
}

.card {
  background: rgba(255, 255, 255, 0.058);
  /* semi-transparent */
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  padding: 1.4rem;
  backdrop-filter: blur(12px);
  /* 🔥 blur effect */
  -webkit-backdrop-filter: blur(12px);
  /* Safari support */
  box-shadow: 0 10px 28px -18px var(--ring);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat {
  background: #1a2f52;
  border: 1px solid #1a2f52;
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
}

.stat .num {
  font-weight: 800;
  font-size: 1.8rem;
  color: #fff;
}

.stat .lbl {
  color: #c4c2c2;
  font-weight: 600;
  font-size: .9rem;
}

/* Testimonials */
.testi {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.quote {
  background: var(--surface);
  border: 1px solid #e8edf4;
  border-radius: 18px;
  padding: 1.2rem;
  min-height: 180px;
  position: relative;
}

.quote::after {
  content: "\201C";
  position: absolute;
  right: 1rem;
  bottom: -.6rem;
  font-size: 6rem;
  color: var(--brand-light);
  opacity: .35;
  line-height: 1;
}

.who {
  margin-top: .8rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.role {
  color: var(--brand-darkgray);
  font-size: .9rem;
}

/* CTA */
.cta {
  background: linear-gradient(90deg, color-mix(in oklab, var(--brand-light) 100%, #fff), #2D4C7A);
  border: 0.2px solid #f4e9e8;
  border-radius: 20px;
  padding: 1.6rem;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}

/* Footer */
footer {
  background: #878ebd71;
    background: linear-gradient(135deg, #878ebd71, #010123e2);
}

.foot {
  display: grid;
  grid-template-columns: 1.3fr .5fr .9fr;
  gap: 1.6rem;
  padding: 2.4rem 0;
}

.foot h4 {
  color: #fff;
  margin-bottom: 10px;
}

footer a {
  color: #ffffff;
  opacity: .9;
}

.small {
  color: #ffffff;
  font-size: .92rem;
}

.credit {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 1rem 0;
  color: #ffffff;
  font-size: .9rem;
  display: flex;
  gap: .5rem;
  justify-content: space-between;
  align-items: center;
}

/* Responsive */
@media (max-width: 980px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    padding: 3rem 0 2rem;
  }

  .grid.cols-3 {
    grid-template-columns: 1fr 1fr;
  }

  .grid.cols-2 {
    grid-template-columns: 1fr;
  }

  .testi {
    grid-template-columns: 1fr 1fr;
  }

  .trust {
    grid-template-columns: 1fr 1fr;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .foot {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .menu {
    display: none;
  }

  .grid.cols-3,
  .testi {
    grid-template-columns: 1fr;
  }

  .trust {
    grid-template-columns: 1fr;
  }

  .foot {
    grid-template-columns: 1fr;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: no-preference) {
  .float {
    animation: float 8s ease-in-out infinite;
  }

  @keyframes float {

    0%,
    100% {
      transform: translateY(0)
    }

    50% {
      transform: translateY(-6px)
    }
  }
}


/* expert sectio start */

.support-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 60px 10%; */
  /* flex-wrap: wrap; */
  /* position: relative; */
  /* overflow: hidden; */
  /* background-image: url(../assets/images/backgrounds/Frame\ 8\ \(1\).jpg); */
  background-image: url(../assets/images/backgrounds/Frame\ 11.png);

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400PX; */
  /* background-attachment:fixed; */
}

/* Decorative Circles */
/* .support-section::before,
    .support-section::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: #e6e6eb;
      z-index: 0;
    } */
/* .support-section::before {
      width: 300px;
      height: 300px;
      top: -100px;
      left: -100px;
    }
    .support-section::after {
      width: 250px;
      height: 250px;
      bottom: -120px;
      right: -80px;
    } */

.support-text {
  /* flex: 1 1 500px; */
  /* max-width: 600px; */
  width: 100% !important;
  z-index: 1;
}

.support-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #2d4c7a;
  /* Updated primary color */
  margin-bottom: 20px;
  /* position: relative; */
  width: 100% !important;
}

.support-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #686a6d;
  /* Updated secondary text color */
  width: 100% !important;
  text-align: justify;
}

.btn-gradient {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #2d4c7a, #686a6d);
  /* Updated gradient */
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  opacity: 0.9;
  transform: translateY(-2px);

}



/* Responsive */
@media (max-width: 992px) {
  .support-section {
    padding: 40px 5%;
  }

  .support-text h2 {
    font-size: 1.8rem;
  }

  .support-text p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .support-section {
    flex-direction: column;
    text-align: center;
  }

  .support-text {
    margin-bottom: 30px;
  }

  .support-image img {
    max-width: 300px;
  }
}


/* about page start */

.about-page {

  background-image: url(../assets/images/backgrounds/color_transferred_image.png);
  color: #fff;
  /* padding: 6rem 0; */
  text-align: left;
  height: 400px;
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  display: flex;
  align-items: end;
  justify-content: end;
  padding: 0px !important;
}

/*.banner-text {*/
/*  padding: 200px 0px 0px 0px;*/
/*}*/

.banner-text h1 {
  font-weight: 500;
  color: #000;
}

.banner-text p {
  max-width: 750px;
  font-size: 1.1rem;
  color: #0f223d;
  text-align: left;
}

.highlight-box {
  /* background: #001855; */
  /* border-left: 5px solid #0d6efd; */
  padding: 1.5rem;
  /* margin-bottom: 2rem; */

}

.highlight-box h3 {

  color: #2d4c7a;
  margin-bottom: 10px;
}

.highlight-box p {

  color: #000000;
  text-align: justify;
}

.about-img {
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
}

/* .stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 1rem;
      margin-top: 2rem;
    } */
/* .stat {
      background: #fff;
      border-radius: 12px;
      padding: 1.2rem;
      text-align: center;
      box-shadow: 0 6px 16px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    } */
.stat:hover {
  transform: translateY(-6px);
}

.stat .num {
  font-size: 2rem;
  font-weight: 700;
  color: #0d6efd;
}

@media (max-width:768px) {
  .hero-about h1 {
    font-size: 2rem;
  }
}

.vision-sections {
  background-image: url(../assets/images/backgrounds/Frame\ 14.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* background-color: #2D4C7A; */
  background-attachment: fixed;
}

.vision-section {
  background-image: url(../assets/images/backgrounds/Frame\ 12\ \(2\).jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

}

.vision-section ul {
  padding: 0px;
  width: 50%;
}

.vision-section ul li {
  list-style: none;
  padding: 10px 25px;
  background-color: #2d4c7a;
  margin-bottom: 15px;
  border-radius: 16px;
  color: #fff;
}


/* /// */

/* service page start */
.services-page {

  background-image: url(../assets/images/backgrounds/color_transferred_image1.png);
  color: #fff;
  /* padding: 6rem 0; */
  text-align: left;
  height: 400px;
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  display: flex;
  align-items: end;
  justify-content: end;
  padding: 0px !important;
}

.service-content-page {
  /* background-image: url(../assets/images/backgrounds/Frame\ 7.jpg); */
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  /* background-size: cover; */
  background-attachment: fixed;


}

.service-content-page h2 {
  font-size: 2.2rem;
  color: #002254;
  margin-bottom: 20px;
}

.service-content-page p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

/* Cards Section */
.service-content-page .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

/* .service-detail-bx{
    background-image: url(../assets/images/backgrounds/Frame\ 7.jpg) ;
    border-radius: 18px;

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
     transition: 0.4s;
      animation: fadeUp 1.2s ease;

    } */

.service-content-page .service-detail {
  background: rgba(13, 1, 181, 0.064) !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  padding: 1.4rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px -18px var(--ring);
  /* padding: 25px;
      border-radius: 15px;
      box-shadow: 0 8px 18px rgba(0,0,0,0.1); */
  transition: 0.4s;
  animation: fadeUp 1.2s ease;
}

.service-content-page .service-detail:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-content-page .service-detail i {
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 15px;
}

.service-content-page .service-detail h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-content-page .service-detail p {
  font-size: 0.95rem;
  color: #666;
  text-align: justify;
}

.service-detail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-detail strong {
  color: #2D4C7A;
}

.service-content-page p {
  color: #000000 !important;
}

.service-content-page p span {
  color: #3d3d3d !important;
}

.service-detail {
  text-align: left !important;
}

.service-detail ul {
  /* padding: 0px !important; */
  padding: 12px !important;
}



/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-page-highlight {
  background-image: url(../assets/images/backgrounds/Frame\ 15.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.service-page-highlight h4 {
  margin-bottom: 20px;
}

.service-page-highlight ul li {
  list-style: none;
}

.service-page-highlight ul {
  padding: 0px !important;
}

@media (max-width: 480px) {
  .service-page-highlight {
    background-position: left !important;
    background-size: auto !important;
  }

}

/* /// */


/* contact page start */

.contact-page {
  background-image: url(../assets/images/backgrounds/Contact\ page.png);
  color: #fff;
  /* padding: 6rem 0; */
  text-align: left;
  height: 400px;
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  display: flex;
  align-items: end;
  justify-content: end;
  padding: 0px !important;
}

.contact-section {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.contact-section h2 {
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: #1a3c8e;
}

.contact-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.contact-info {
  background: linear-gradient(135deg, #1a3c8e, #2d4c7a);
  color: #fff;
  padding: 30px;
}

.contact-info h4 {
  font-weight: 600;
}

.contact-info p {
  margin: 10px 0;
}

.contact-info i {
  margin-right: 10px;
  color: #6b76c8;
}

.contact-form {
  padding: 30px;
}

.contact-form input,
.contact-form textarea {
  border-radius: 10px;
  padding: 12px;
}

.contact-form button {
  border-radius: 10px;
  padding: 12px;
  background: #1a3c8e;
  color: #fff;
  font-weight: 600;
  border: none;
  width: 100%;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #0d2c6c;
}

iframe {
  border: 0;
  width: 100%;
  height: 250px;
  border-radius: 10px;
  margin-top: 20px;
}


/* //// */

/* team page start */
.team-page {
  background-image: url(../assets/images/backgrounds/Website\ banner\ size1.png);
  color: #fff;
  /* padding: 6rem 0; */
  text-align: left;
  height: 400px;
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  display: flex;
  align-items: end;
  justify-content: end;
  padding: 0px !important;
}

section.team {
  padding: 4rem 1rem;
  background: radial-gradient(circle, rgba(45, 76, 122, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

section.team h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2d4c7a;
  margin-bottom: 1rem;
}

section.team p.lead {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
}

.team-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1100px;
  margin: auto;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
}

/* alternate layout */
.team-member:nth-child(even) {
  flex-direction: row-reverse;
}


.team-member {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 12px 24px rgba(0,0,0,0.12); */
}

/* Image hover animation */
.team-photo {
  width: 260px;
  height: 260px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 6px solid #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-photo:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Info box */
.team-info {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-info:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Titles */
.team-info h3 {
  margin: 0;
  font-size: 1.4rem;
  color: #2d4c7a;
  transition: color 0.3s ease;
}

.team-info h4 {
  margin: 0.3rem 0;
  color: #666;
  font-weight: 500;
}

.team-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin: 0.8rem 0;
  text-align: justify;
}

/* On hover – title highlight */
.team-info:hover h3 {
  color: #0d6efd;
}

/* Footer icons */
.team-footer {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.team-footer a {
  color: #2d4c7a;
  font-size: 1.3rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.team-footer a:hover {
  color: #0d6efd;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .team-member {
    flex-direction: column !important;
    text-align: center;
  }

  .team-photo {
    width: 200px;
    height: 200px;
  }

  .team-info {
    text-align: center;
    padding: 1.5rem;
  }
}


/* counsulting page start */

/* About Experts */
.counsulting-page {
  background-image: url(../assets/images/backgrounds/counsul-bg.jpg);
  color: #fff;
  /* padding: 6rem 0; */
  text-align: left;
  height: 400px;
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  display: flex;
  align-items: end;
  justify-content: end;
  padding: 0px !important;
}

.about-experts {
  padding: 60px 20px;
  text-align: center;
}

.about-experts .highlights {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.about-experts .card {
  background: #002143;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.about-experts .card:hover {
  /* background: rgba(255, 255, 255, 0.1); */
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* query */

.qury-box {
  position: relative;
  background-image: url(../assets/images/recorces/accountant-office.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
  padding: 40px 25px;
  margin-bottom: 25px;
}

.qury-box .overlay {
  background: rgba(0, 41, 102, 0.7);
  /* Dark blue transparent overlay */
  padding: 30px 20px;
  border-radius: 12px;
}

.qury-box h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  font-weight: bold;
}

.qury-box p {
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
}

.form-area {
  background: rgba(255, 255, 255, 0.2);
  /* transparent white layer */
  backdrop-filter: blur(10px);
  /* blur effect */
  -webkit-backdrop-filter: blur(10px);
  /* Safari support */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  color: #000;
  /* ensure text stays readable */
}

.expert-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 40px auto;
}

.form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.required {
  color: red;
}

input,
textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #2d4c7a;
  outline: none;
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 6px;
}

.radio-group label {
  font-size: 0.95rem;
}

.btn-submit {
  background: #0047ab;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 150px;
}

.btn-submit:hover {
  background: #003380;
}

/* Responsive */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}



/* CTA */
.cta {
  background: linear-gradient(135deg, #2d4c7a, #686a6d);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.cta h2 {
  margin-bottom: 15px;
}

.cta p {
  margin-bottom: 20px;
}

.query-section {
  padding: 60px 20px;
  background: #f9fafc;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.query-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

/* Left Blue Box */
/* Specialist Box */
.specialist-box {
  background: #002a5c;
  /* dark blue bg */
  padding: 25px;
  border-radius: 12px;
  color: #fff;
}

/* Specialist List */
.specialist-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.specialist-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover effect for list item */
.specialist-list li:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Specialist Images */
.specialist-list img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect on image */
.specialist-list li:hover img {
  transform: scale(1.1) rotate(3deg);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

/* Text */
.specialist-list strong {
  display: block;
  font-size: 1rem;
}

.specialist-list span {
  font-size: 0.85rem;
  color: #ddd;
}

/* Right Form */
.form-area h2 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.form-area p {
  margin-bottom: 20px;
  color: #555;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.required {
  color: red;
}

input,
textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #2d4c7a;
  outline: none;
}

.form-row {
  display: flex;
  gap: 15px;
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 6px;
}

.btn-submit {
  background: #0047ab;
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 150px;
}

.btn-submit:hover {
  background: #003380;
}

/* Responsive */
@media (max-width: 900px) {
  .query-grid {
    grid-template-columns: 1fr;
  }

  .specialist-box {
    text-align: center;
  }
}

/* // */
.specialist-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.specialist-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.specialist-list img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.specialist-list div {
  line-height: 1.3;
}

.specialist-list strong {
  display: block;
  font-size: 1rem;
}

.specialist-list span {
  font-size: 0.85rem;
  color: #ddd;
}

/* home-page banner graph style */

.card-bnr-grph {
  /* position: absolute; */
  position: relative;
  width: 561px;
  height: 176px;
  /* background: #121212; */
  /* top: 50%; */
  /* left: 50%; */
  /* transform: translate(-50%, -50%); */
  margin-top: 30px;
  margin-bottom: 30px;
}

.card-bnr-grph svg {
  position: absolute;
}

.card-bnr-grph h2 {
  color: rgb(34, 38, 80);
  font-family: "Nunito Sans", arial, sans-serif;
  font-weight: bold;
  font-size: 20px;
  position: absolute;
  left: 0px;
}

.card-bnr-grph h2 span {
  font-size: 35px;
  font-weight: 900;
}



.bnr-two {
  position: absolute;
  left: 0px;
  color: rgb(0, 0, 0);
  font-size: 20px;
  font-weight: 700;
  bottom: -20px;
}

.bnr-one {
  position: absolute;
  right: 24%;
  color: rgb(0, 0, 0);
  font-size: 20px;

  font-weight: 700;
}



.path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 1.5s ease-in alternate infinite;
}

@keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }

  to {
    stroke-dashoffset: 0;
  }
}

/* career page start */
.career-page {

  background-image: url(../assets/images/backgrounds/color_transferred_image.png);
  color: #fff;
  /* padding: 6rem 0; */
  text-align: left;
  height: 400px;
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  display: flex;
  align-items: end;
  justify-content: end;
  padding: 0px !important;
}

/* section {max-width:900px; margin:30px auto; padding:20px; background:#fff; border-radius:8px; box-shadow:0 4px 12px rgba(0,0,0,0.05);} */
.h2-s {color:#2d4c7a; margin-top:0;}
.careerpg-not-bx .note {padding:15px; background:#f1f3f8; border-left:4px solid #2d4c7a; margin:15px 0;}
.career-pge-bx{
  background-image: url(../assets/images/backgrounds/Frame\ 15.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* columns: #fff; */
}
.career-pge-bx .highlights {display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:15px; margin-top:20px;}

.career-pge-bx .card {background:#f9fafc; padding:15px; border-radius:6px; text-align:center; box-shadow:0 2px 6px rgba(0,0,0,0.05);}
.form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.form-section img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Form styling */
.creer-g-frm-bx form {
  display: grid;
  gap: 12px;
  /* margin-top: 20px; */
}

.creer-g-frm-bx input,
.creer-g-frm-bx textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}

.creer-g-frm-bx button {
  background: #2d4c7a;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.creer-g-frm-bx button:hover {
  background: #1e3554;
}

/* Query Box */
.qury-box-2 {
  position: relative;
  background-image: url("../assets/images/recorces/bussiness-people-working-team-office.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
  padding: 40px 25px;
  margin-bottom: 25px;
}

.qury-box-2 .overlay {
  background: rgba(0, 41, 102, 0.7);
  padding: 30px 20px;
  border-radius: 12px;
}

.qury-box-2 h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  font-weight: bold;
}

.qury-box-2 p {
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
}


/* Vacancies Section */
.vacancies {
  margin-top: 40px;
  text-align: center;
}

.vacancies h3 {
  color: #2d4c7a;
  margin-bottom: 25px;
  font-weight: 700;
}

.vacancy-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vacancy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.vacancy-card h4 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: #1e3554;
  font-weight: 600;
}

.vacancy-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.5;
}

.vacancy-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.vacancy-actions .btn {
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.vacancy-actions .btn-primary {
  background: #2d4c7a;
  border: none;
}

.vacancy-actions .btn-primary:hover {
  background: #1e3554;
}

.vacancy-actions .btn-outline-primary {
  border: 1px solid #2d4c7a;
  color: #2d4c7a;
  background: transparent;
}

.vacancy-actions .btn-outline-primary:hover {
  background: #2d4c7a;
  color: #fff;
}
.creer-g-frm-bx select,
.creer-g-frm-bx input[type="file"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  font-size: 0.95rem;
}

.creer-g-frm-bx input[type="file"] {
  padding: 6px;
}
/* ✅ Responsive Fix */
@media (max-width: 768px) {
  .form-section {
    grid-template-columns: 1fr; /* stack form and query box */
  }

  .qury-box-2 {
    margin-top: 20px;
  }
}



.awareness-box {
  background: linear-gradient(135deg, #2d4c7a, #1e3554);
  color: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  margin: 40px 0 30px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.awareness-box h3 {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 1.4rem;
}

.awareness-box p {
  margin-bottom: 18px;
  font-size: 1rem;
  opacity: 0.95;
}

.awareness-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.awareness-actions .btn {
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.awareness-actions .btn-primary {
  background: #ffc107;
  border: none;
  color: #1e3554;
}

.awareness-actions .btn-primary:hover {
  background: #e0a800;
}

.awareness-actions .btn-outline-light {
  border: 1px solid #fff;
  color: #fff;
}

.awareness-actions .btn-outline-light:hover {
  background: #fff;
  color: #1e3554;
}

.awareness-actions .btn-success {
  background: #28a745;
  border: none;
}

.awareness-actions .btn-success:hover {
  background: #218838;
}

/* Responsive */
@media (max-width: 768px) {
  .awareness-actions {
    flex-direction: column;
    gap: 10px;
  }
}
/* Name + Age row */
.form-row.name-age {
  display: grid;
  grid-template-columns: 2fr 1fr; /* Name 2x wider than Age */
  gap: 12px;
}