/********** Template CSS **********/
:root {
    --primary: #FDA12B;
    --secondary: #8D9297;
    --light: #F8F9FA;
    --dark: #182333;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 25px 0;
    color: var(--secondary);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    /* color: var(--primary); */
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: -73px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    /* background: rgba(0, 0, 0, .65); */
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
    border-radius: 50px;
}

.carousel-caption .breadcrumb-item+.breadcrumb-item::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
        border-width: 12px;
    }
}

.page-header {
    background: linear-gradient(rgb(169 137 137 / 2%), rgb(255 255 255 / 22%)), url(https://ik.imagekit.io/kgrarhxkv/gdp/images/banner-img4.jpg?updatedAt=1761889542125) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Facts ***/
.facts-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, .65);
}

.facts-overlay h1 {
    font-size: 120px;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
}

.facts-overlay a:hover {
    color: var(--primary) !important;
}


/*** Service ***/
.service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: var(--primary);
    opacity: 0;
    transition: .5s;
}

.service-item:hover .service-text::before {
    height: 100%;
    opacity: 1;
}

.service-text * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-text * {
    color: #FFFFFF !important;
}


/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-text {
    position: absolute;
    width: 75%;
    bottom: 30px;
    left: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    width: 100%;
}

.team-text * {
    transition: .5s;
}

.team-item:hover .team-text * {
    letter-spacing: 2px;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    color: #999999;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}
/* Logo sizing & alignment */
.navbar .brand-logo{
  height: 94px;
    /* margin-left: 246px; */
    width: auto;
    display: block;
}

/* Slight extra right shift (already added ms-3 in HTML) */
@media (max-width: 575.98px){
  .navbar .brand-logo{ height: 32px; }  /* smaller on phones */
}
/* Center caption vertically and improve readability */
#header-carousel .carousel-caption{
  top: 50%;
  /* transform: translateY(-50%); */
  bottom: auto;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}

/* Responsive type sizes */
.hero-title{
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
}
.hero-subtitle{
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 1.15;
}
.hero-tagline{
  font-size: clamp(1rem, 2.6vw, 1.6rem);
  letter-spacing: .06em;
}

/* Optional: subtle dark overlay for contrast */
#header-carousel .carousel-item::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}
.image-frame{
  padding: 24px;
  border: 1px solid #ddd;
  background: #fff;
}
.image-frame img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 576px){
  .image-frame{ padding: 14px; }
}
.service-item img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-item:hover img {
  transform: scale(1.05);
}

.service-text {
  background: #fff;
}

.service-item {
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-item h5 {
  color: #d8861f; /* GDP brand orange accent */
}

.btn-primary {
  background-color: #a64ca6; /* GDP purple accent */
  border: none;
}

.btn-primary:hover {
  background-color: #8e3f8e;
}

@media (max-width: 767.98px) {
  .service-item img {
    height: 200px;
  }
}
.service-item {
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-item:hover .service-img {
  transform: scale(1.03);
}

.service-text h5 {
  color: #d67d1f; /* GDP orange accent */
}

.service-text p {
  font-size: 15px;
  line-height: 1.6;
}

.btn-primary {
  background-color: #a64ca6; /* GDP purple accent */
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #8a3d8a;
}

@media (max-width: 767.98px) {
  .service-img {
    height: 200px;
  }
  .service-text p {
    font-size: 14px;
  }
}
/* Footer */
.gdp-footer .footer-contact{
  background:#eef2f6;            /* light grey-blue like screenshot */
}
.tracking-1{ letter-spacing:.06em; }

.gdp-footer a{
  color:#555;
  text-decoration:none;
}
.gdp-footer a:hover{ color:#8a3d8a; } /* soft purple hover to match theme */

.gdp-footer .footer-bottom{
  background:#f1f3f5;
}

/* Small square FB icon like in screenshot */
.gdp-footer .social-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:26px; height:26px;
  border-radius:4px;
  background:#000;
  color:#fff;
  transition:opacity .2s ease;
  font-size:14px;
}
.gdp-footer .social-link:hover{ opacity:.85; }

/* Mobile tweaks */
@media (max-width:575.98px){
  .gdp-footer .footer-contact p{ padding:0 .5rem; }
}
/* --- Hero Section --- */
#header-carousel {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  height: 100vh; /* full-screen height */
  object-fit: cover;
  object-position: center;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1000px;
  padding: 0 15px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
}

.hero-tagline {
  font-size: clamp(1rem, 2.8vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.06em;
}

#header-carousel .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* soft overlay for text visibility */
}

/* --- Responsive Adjustments --- */
@media (max-width: 767.98px) {
  .hero-bg {
    height: 70vh; /* smaller screens shorter */
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1.3rem;
  }
  .hero-tagline {
    font-size: 1rem;
  }
}
/* ==========================
   Navbar Base
========================== */
.navbar {
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar-brand .brand-logo {
  height: 58px;
  width: auto;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  padding: 12px 20px;
  transition: color 0.3s ease, background 0.3s ease;
  border-radius: 6px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #8a3d8a;
  background: rgba(166, 76, 166, 0.08);
}

/* ==========================
   Desktop & Tablet Styles
========================== */
@media (min-width: 992px) {
  .navbar {
    padding: 0.8rem 4rem;
  }

  .navbar-nav .nav-link {
    padding: 12px 22px;
    font-size: 1rem;
  }

  .navbar-brand .brand-logo {
    height: 60px;
  }
}

/* ==========================
   Tablet View (768–991px)
========================== */
@media (max-width: 991.98px) {
  .navbar {
    padding: 12px 25px;
  }

  .navbar-brand .brand-logo {
    height: 46px;
  }

  .navbar-nav {
    background: #fff;
    text-align: center;
    padding: 15px 0;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  }

  .navbar-nav .nav-link {
    display: block;
    padding: 10px 20px;
    border-radius: 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }

  .navbar-toggler {
    border: none;
    outline: none;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }
}

/* ==========================
   Mobile View (Below 768px)
========================== */
@media (max-width: 767.98px) {
  .navbar {
    padding: 10px 18px;
  }

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

  .navbar-nav .nav-link {
    font-size: 15px;
    padding: 10px;
  }
}

/* ==========================
   Extra Small Devices (Below 480px)
========================== */
@media (max-width: 480px) {
  .navbar {
    padding: 8px 14px;
  }

  .navbar-brand .brand-logo {
    height: 38px;
  }

  .navbar-nav .nav-link {
    font-size: 14px;
    padding: 8px 10px;
  }
}
.py-5 {
  padding-top: 0rem !important;
  padding-bottom: 1rem !important;
}

@media (min-width: 768px) {
  .py-5 {
    padding-top: 1rem !important; /* from 768px and up */
  }
}
@media (min-width: 1300px) {
  .py-5 {
     padding-bottom: 1rem !important;
  }
}
/* Accordion Wrapper */
.accordion-wrapper {
  width: 100%;
  padding: 1rem 1.5rem;
  background: #fff;
}

.accordion-container {
  max-width: 950px;
  margin: 0 auto;
}

/* Accordion Item */
.accordion-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: #fafafa;
  transition: all 0.3s ease;
}

.accordion-item.active {
  background: #fff;
  border-color: #8a3d8a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Header */
.accordion-header {
  font-weight: 600;
  font-size: 1.05rem;
  color: #333;
  background: #f7f7f7;
  padding: 1rem 1.25rem;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: #eee8f0;
}

/* Add plus/minus indicator */
.accordion-header::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  font-weight: bold;
  font-size: 1.2rem;
  color: #8a3d8a;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
  content: "–";
  transform: rotate(180deg);
}

/* Body */
.accordion-body {
  display: none;
  padding: 1.25rem 1.5rem;
  background: #fff;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

.accordion-item.active .accordion-body {
  display: block;
}

/* Lists */
.accordion-body ol {
  padding-left: 1.4rem;
}

.accordion-body li {
  margin-bottom: 0.6rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .accordion-wrapper {
    padding: 1rem 1.2rem;
  }

  .accordion-header {
    font-size: 1rem;
    padding: 0.9rem 1rem;
  }

  .accordion-body {
    font-size: 0.95rem;
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .accordion-wrapper {
    padding: 1.5rem 1rem;
  }

  .accordion-header {
    font-size: 0.95rem;
  }

  .accordion-body {
    font-size: 0.9rem;
  }
}
/* Purple footer band */
.gdp-footer--purple .footer-contact{
  background:#a64ca6;     /* purple like screenshot */
  padding:14px 0 18px;    /* slim band look */
}

/* Centering & typography */
.gdp-footer .container{
  max-width:1100px;
  margin:0 auto;
  text-align:center;
}

.gdp-footer h6{
  margin:0 0 6px;
  font-size:22px;
  letter-spacing:.04em;
  font-weight:700;
  color:#111;             /* black text like screenshot */
}

.gdp-footer .contact-line{
  margin:0 0 8px;
  color:#111;
  font-size:14px;
}

.gdp-footer a{
  color:#111;
  text-decoration:none;
}
.gdp-footer a:hover{ text-decoration:underline; }

.gdp-footer .social-line{
  margin:6px 0 10px;
  color:#111;
  font-size:15px;
}

.gdp-footer .copyright{
  display:block;
  color:#111;
  font-size:12px;
}

/* Responsive tweaks */
@media (max-width:576px){
  .gdp-footer h6{ font-size:18px; }
  .gdp-footer .contact-line{ font-size:13px; padding:0 8px; }
  .gdp-footer .social-line{ font-size:14px; }
}
/* Mobile default */
.container-fluid.page-header {
  min-height: 300px;           /* adjust if you want */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ≥768px (tablets) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .container-fluid.page-header {
    min-height: 474px;         /* your requested height */
  }
}

/* ≥992px (desktops) — optional */
@media (min-width: 992px) {
  .container-fluid.page-header {
    min-height: 540px;         /* tweak as you like, or keep 474px */
  }
}
/* Default (mobile) - no margin */
.header-content {
  margin-top: 0;
}

/* ≥768px (tablet and up) */
@media (min-width: 768px) {
  .header-content {
    margin-top: 165px;
  }
}
/* ========== Single-line Clients Scroller ========== */
.clients-scroller {
  background: #f8f9fa;
}

.section-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* viewport */
.logo-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  user-select: none;
}

/* moving track */
.logo-track {
  display: flex;
  align-items: center;
  gap: 40px;                 /* space between logos */
  padding: 10px 0;
  will-change: transform;
  animation: marquee 40s linear infinite;
}

/* pause on hover (desktop) */
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

/* each logo */
.logo-item img {
  height: 54px;              /* default size */
  width: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  opacity: .9;
  transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.04);
}

/* animation */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* because we duplicated the list */
}

/* responsive sizing */
@media (max-width: 575.98px) {          /* phones */
  .logo-track { gap: 24px; }
  .logo-item img { height: 40px; }
}

@media (min-width: 576px) and (max-width: 991.98px) { /* tablets */
  .logo-item img { height: 48px; }
}

@media (min-width: 1200px) {            /* large desktops */
  .logo-item img { height: 60px; }
}

/* accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; }
  .logo-marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
/* === OVERRIDES: bigger logo height === */
/* Scales with viewport but capped nicely */
.clients-scroller .logo-item img {
  height: clamp(56px, 7vw, 96px);
}

/* Fine-tune per breakpoint (optional) */
@media (max-width: 575.98px) {          /* phones */
  .clients-scroller .logo-item img { height: 56px; }
}

@media (min-width: 576px) and (max-width: 991.98px) { /* tablets */
  .clients-scroller .logo-item img { height: 68px; }
}

@media (min-width: 1200px) {            /* large desktops */
  .clients-scroller .logo-item img { height: 90px; }
}

/* Give a touch more breathing room vertically if needed */
.clients-scroller .card-like { padding: 18px 0; }

/* Optional: slightly increase spacing between logos when they’re larger */
.clients-scroller .logo-track { gap: 48px; }
/* Tel label + numbers aligned like the screenshot */
.tel{
  display: grid;
  grid-template-columns: auto 1fr; /* label | numbers */
  column-gap: .5rem;               /* space between "Tel :" and numbers */
  row-gap: .2rem;                  /* space between the two numbers */
  align-items: start;
}
.tel dt{
  font-weight: 700;                /* same as <strong> */
  margin: 0;
  grid-row: 1 / span 2;            /* label spans both number rows */
}
.tel dd{
  margin: 0;                       /* remove default indent */
  line-height: 1.5;
}
.tel a:hover{ color:#000; text-decoration: underline; }

/* Always left-align on small screens too (already left in your footer, this is just to be explicit) */
@media (max-width: 991px){
  .tel { justify-items: start; }
}
