* {
  margin: 0px;
  padding: 0px;
  border: 0px;
  outline: 0px;
  box-sizing: border-box;
  list-style: none;
}

:root {
  /*--=== Bg Colors ===--*/
  --bg-purple: hsla(267, 100%, 63%, 1);
  --bg-purplr-alpha-30: hsla(267, 100%, 63%, 0.3);
  --bg-dark-purple: hsla(279, 42%, 9%, 1);
  --bg-oxford-blue: hsla(240, 63%, 13%, 1);
  --bg-oxford-blue-alpha-95: hsla(240, 63%, 13%, 0.95);
  --bg-oxford-blue-alpha-90: hsla(240, 63%, 13%, 0.9);
  --bg-oxford-blue-alpha-80: hsla(240, 63%, 13%, 0.8);
  --color-flow: #5951e6;
  --color-success: #00bf8e;
  --color-warning: #f7c94b;
  --color-danger: #f75842;
  --color-danger-variant: rgba(247, 88, 66, 0.4);
  --color-white: #fff;
  --color-light: rgba(255, 255, 255, 0.7);
  --color-black: #000;
  --color-grey: rgb(42, 41, 41);
  --color-bg: #1f2641;
  --color-bg1: #2e3267;
  --color-bg2: #424890;
  --color-blue: rgb(56, 96, 217);
  --color-purple: rgb(224, 63, 224);
  --color-primary: #636cff;
  --primary-color: #dd5436;
  --secondary-color: #e8e8e8;
  --text-dark: #0f172a;
  --text-light: #94a3b8;
  --white: #ffffff;
  --color-bg-body: linear-gradient(90deg, #f4e3e3 0%, transparent 100%, #f4e3e3 0%);
  --container-padding: 16px;
  --container-max-width-sm: 540px;
  --container-max-width-md: 720px;
  --container-max-width-lg: 960px;
  --container-max-width-xl: 1120px;
  --surface-color: #fff;
  --curve: 40;
  --bg: #fff6f3;
  --card: #ffffff;
  --muted: #666;
  --text: #1a1a1a;
  --brand: #ff6b4a;
  --brand-hover: #ff5a36;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  --radius: 14px;
  --brand: #ff6b4a;
  --brand-light: #ff9271;
  --text-dark: #222;
  --text-muted: #555;
  --bg-gradient: linear-gradient(145deg, #ffe1d2, #fff3ed);
  --card-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);


  /*--=== Gradiant Colors ===--*/
  --gradient-1: linear-gradient(to right bottom, hsl(299, 100%, 52%), hsl(291, 100%, 58%), hsla(283, 100%, 60%), hsla(273, 100%, 62%),
      hsla(262, 100%, 63%), hsla(242, 100%, 69%), hsla(223, 100%, 62%), hsla(210, 100%, 50%), hsla(203, 100%, 50%), hsla(198, 100%, 50%),
      hsla(192, 100%, 48%), hsla(185, 90%, 48%), );

  --gradient-2: linear-gradient(90deg, transparent 0%, #f2c3c3 50%, transparent 100%);

  --gradient-3: linear-gradient(90deg, rgb(221, 7, 7) 0%, #f63978 50%, rgb(241, 68, 41) 100%);

  /*--=== Text Colors ===--*/
  --text-white: hsla(0, 0%, 100%, 1);
  --text-gainsboro: hsla(0, 0%, 87%, 1);
  --text-champange-pink: hsla(23, 61%, 86%, 1);
  --text-purple: hsla(267, 100%, 63%, 1);
  --text-black: #18191f;

  /*--=== Font-Size ===--*/
  --font-size-1: 3.6rem;
  --font-size-2: 2.4rem;
  --font-size-3: 2rem;
  --font-size-4: 1.8rem;
  --font-size-5: 1.6rem;
  --font-size-6: 1.5rem;
  --font-size-7: 1.4rem;
  --font-size-8: 1.3rem;
  --font-size-9: 1.2rem;
  --font-size-10: 1rem;
  --font-size-11: 0.9rem;

  /*--=== font-weight ===--*/
  --weigth-regular: 400;
  --weigth-semiBold: 600;
  --weigth-bold: 700;

  /*--=== Border-Radius ===--*/
  --radius-circle: 50%;
  --radius-5: 5px;
  --radius-3: 3px;

  /*--=== Transition ===--*/
  --transition-1: 250ms ease;
  --transition-2: 500ms ease;
  --transition-3: all 400ms ease;
  --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);


  /*--=== Container Width ===--*/
  --container-width-lg: 79%;
  --container-width-md: 90%;
  --container-width-sm: 94%;

  /*--=== Font-Family ===--*/
  --font-family-1: 'Mukta', sans-serif;
  --font-family-2: 'Ubuntu', sans-serif;
  --font-family-3: 'Epilogue', sans-serif;

}

:root {
 --tc-primary: #f75842;
 --tc-primary-2: #ff7a5c;
 --tc-text: #1e2126;
 --tc-muted: #616b7a;
 --tc-bg: #fff;
 --tc-card: #ffffff;
 --tc-soft: #f8f9fb;
 --tc-radius-lg: 20px;
 --tc-radius: 12px;
 --tc-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

/*-----======= Reset =======-----*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}

time,
span,
input,
button,
textarea {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  font-size: var(--font-size-9);
  cursor: pointer;
  display: block;
  transition: var(--transition-3);
}

img {
  height: auto;
}

h1 {
  margin: 2rem 0;
  font-family: 'Epilogue';
  font-size: var(--font-size-1);
}

h2 {
  font-family: 'Epilogue';
  font-size: var(--font-size-3);
  margin: 1rem 0;
  color: var(--color-danger);
}

h3 {
  font-family: 'Epilogue';
  font-size: var(--font-size-4);
  margin-bottom: 1.5rem;
  color: var(--color-danger);
}

p {
  color: black;
  font-size: 1.1rem;
  font-family: var(--font-family-2);
}

input,
button,
textarea {
  background: none;
  border: none;
  font: inherit;
}

section {
  margin: 3rem 0;
}


input,
textarea {
  width: 100%;
}

button {
  cursor: pointer;
}

address {
  font-style: none;
}

body {
  background: var(--color-bg-body);
  color: var(--text-black);
  font-family: var(--font-family-2);
  font-weight: var(--weigth-regular);
  line-height: 1.6;
}

::-webkit-scrollbar {
  width: 18px;
}

::-webkit-scrollbar-track {
  background-color: var(--color-white);
}

::-webkit-scrollbar-thumb {
  background-color: rgb(244, 223, 223);
}

.container {
  width: 100%;
  max-width: var(--container-max-width-xl);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  box-sizing: border-box;
}

/* Medium screens (tablets) */
@media (max-width: 991px) {
  .container {
    max-width: var(--container-max-width-md);
  }
}

/* Small screens (phones) */
@media (max-width: 600px) {
  .container {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    min-height: 45vh;
  }
}


.button-btn {
  padding: 15px 20px;
  background: var(--color-danger);
  display: inline;
  border-radius: 5px;
  cursor: pointer;
  color: var(--text-white);
}

/* .button-btn:hover {
  background: transparent;
  border: 1px solid var(--color-danger);
  color: var(--color-danger);
} */


/*-----======= Header =======-----*/

.header {
  background: radial-gradient(60% 140% at -10% 110%, rgba(255,107,91,.28) 0%, rgba(255,107,91,0) 55%),
    linear-gradient(135deg, var(--tc-bg-1) 0%, var(--tc-bg-2) 70%);
  font-weight: var(--weigth-regular);
  width: 100%;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 10vh;
}

/*--=== Header-Left ===--*/
.top-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 100%;
}

/*--=== Header-Rigth ===--*/
.top-rigth-items li {
  display: inline-block;
}

.tc-topbar{
  background:#fff;
  border-bottom:1px solid var(--tc-line);
  box-shadow:0 2px 6px rgba(0,0,0,.04);
}
.tc-topbar__inner{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:10px 0;
}
.tc-topbar__logo img{ height:40px; width:auto; display:block; }

/* actions */
.tc-topbar__actions{
  display:flex; align-items:center; gap:10px;
  list-style:none; margin:0; padding:0;
}

/* contact chips */
.chip a{
  display:flex; align-items:center; gap:8px;
  padding:8px 12px;
  text-decoration:none;
  color:white;
  font-weight:700; font-size:.9rem;
  transition:border-color .2s, box-shadow .2s, color .2s;
}
.chip a i{ color:var(--tc-primary); }
.chip a:hover{
  border-color:#d8e2ea;
  box-shadow:0 8px 22px rgba(0,0,0,.08);
  color:var(--tc-primary);
}

/* socials */
.social a{
  width: 36px;
    height: 36px;
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #162236;
    border: 1px solid var(--tc-line);
    color: #fff;
    transition: background .2s 
ease, transform .08s 
ease;
}
.social a:hover{ background:var(--tc-primary); color:#fff; transform:translateY(-1px); }
.social i{ font-size:.9rem; }

/* responsive */
@media (max-width:1024px){
  .chip span{ display:none; }   /* keep icons, hide long text for tablets */
  .chip a{ padding:8px; }
}
@media (max-width:560px){
  .tc-topbar__inner{ padding:8px 0; }
  .social a{ width:32px; height:32px; }
}



/*-----======= Navbar =======-----*/
nav {
  width: 100%;
  background-color: transparent;
  height: 5rem;
  position: fixed;
  top: 5;
  z-index: 11;
}

.navbar {
  background: var(--text-white);
  color: var(--text-black);
  font-weight: var(--weigth-regular);
  font-size: var(--font-size-9);
}

.navbar-container {
  width: var(--container-width-lg);
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.window-scroll {
  background: var(--text-white);
  top: 0;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.menu-items {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-items li {
  position: relative;
  /* margin: 0 0.3rem; */
}

.menu-items a {
  color: var(--text-black);
  font-size: var(--font-size-9);
  transition: var(--transition-2);
  padding: 0.5rem 0.8rem;
  font-size: 1.1rem;
}

.menu-items a.active {
  color: var(--color-danger);
  margin-left: 0;
  padding-left: 0;
  font-weight: 500;
}

.menu-items a:hover {
  color: var(--color-danger);
}

.menu-items:first-child {
  color: var(--color-danger);
}

.menu-button {
  height: 55px;
}

.menu-button button {
  background: var(--color-danger);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  color: var(--text-white);
  transition: var(--transition-3);
}

.menu-button button:hover {
  color: var(--color-danger);
  background: transparent;
  border: 1px solid var(--color-danger);
}

.menu-items .fa-solid {
  margin-left: 0.4rem;
  color: var(--text-black);
  font-size: var(--font-size-10);
}

/*--=== nav-sub-items ===--*/
nav .menu ul li .sub-menu {
  position: absolute;
  left: 0;
  width: 200px;
  background: var(--color-white);
  display: none;
  z-index: 90;
  transition: all ease 0.5s;
  box-shadow: 0 20px 45px #00000020;
}

nav .menu ul li .sub-menu li {
  width: 100%;
  margin: 0;
  margin-bottom: 0.5rem;
  padding: 0 0.4rem;
}

nav .menu ul li .sub-menu li:first-child {
  margin-top: 0.4rem;
}

.sub-menu li a {
  padding: 0.5rem 0.7rem;
  width: 100%;
  display: block;
  font-size: 1.1rem;
  border-radius: 0.5rem;
}

.sub-menu li {
  transition: var(--transition-2);
}

.sub-menu a:hover {
  background: #f6f4ff;
}

nav .menu ul li .sub-menu li .sub-menu-items {
  left: 200px;
  top: 0;
  display: none;
  position: absolute;
  background: var(--color-white);
  width: 200px;
  z-index: 90;
  transition: all ease 0.5s;
  box-shadow: 0 20px 45px #00000020;
}

nav .menu ul li .sub-menu li .sub-menu-items li:first-child {
  margin-top: 0.4rem;
}

.sub-menu-items li a {
  padding: 0.5rem 0.7rem;
  width: 100%;
  display: block;
  font-size: 1.1rem;
  border-radius: 0.5rem;
}

nav .menu ul li .sub-menu li .sub-menu-items li {
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 0 0.5rem;
}

.sub-menu-items li a:hover {
  background: #f6f4ff;
}


nav .menu ul li:hover>ul {
  z-index: 9;
  display: inherit;
  margin-top: 0;
}

nav .menu ul li .sub-menu li:hover>ul {
  display: inherit;
  margin-top: 0;
  z-index: 9;
}

.down:hover .fa-caret-down {
  rotate: 180deg;
}

/*-----======= Hero Section =======-----*/
.hero {
  position: relative;
  top: 13vh;
}

.hero-container {
  padding: 3rem 2rem;
  text-align: center;
}

.hero-container h1 {
  font-family: 'Epilogue';
  color: var(--color-danger);
  margin: 2rem 0 0rem 0;
  font-size: var(--font-size-1);
}

.hero-container span {
  display: inline;
  color: var(--text-black);
}

.hero-container p {
  margin-bottom: 2rem;
  font-size: var(--font-size-8);
}

.hero-container .button {
  background: var(--color-danger);
  padding: 1rem 2rem;
  font-size: var(--font-size-9);
  border-radius: 5px;
  color: var(--text-white);
  margin-bottom: 2rem;
  display: inline;
}

.hero-container .button:hover {
  background: transparent;
  color: var(--color-danger);
  border: 1px solid var(--color-danger);
}


/*-----======= Contact Section =======-----*/
.contact {
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-container {
  position: relative;
  min-height: 85vh;
  padding: 2rem 2rem 0 2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
}

.form {
  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(12, 12, 12, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

/* .contact-form {
  background-color: var(--color-danger);
  position: relative;
}

.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #a33928);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
} */

/* .contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: var(--color-danger);
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
} */
.contact-form {
 position: relative;
 padding: clamp(1.25rem, 3vw, 2rem);
 background: radial-gradient(
   240px 240px at 90% 20%,
   rgba(0, 0, 0, 0.06),
   transparent 60%
  ),
  linear-gradient(180deg, #e06e58 0%, #ffd6cf 100%);
}
.contact-form .circle {
 display: none;
}

#CommonEnquiry input,
#CommonEnquiry select,
#CommonEnquiry textarea {
 width: 100%;
 padding: 0.85rem 1rem;
 border-radius: 999px;
 border: 1.5px solid rgba(0, 0, 0, 0.08);
 outline: none;
 background: #fff;
 color: var(--tc-text);
 margin-bottom: 0.9rem;
 transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#CommonEnquiry textarea {
 border-radius: 16px;
}
#CommonEnquiry input:focus,
#CommonEnquiry select:focus,
#CommonEnquiry textarea:focus {
 border-color: rgba(247, 88, 66, 0.6);
 box-shadow: 0 0 0 4px rgba(247, 88, 66, 0.15);
}
#CommonEnquiry button,
#CommonEnquiry [type="submit"] {
 background: linear-gradient(135deg, var(--tc-primary), var(--tc-primary-2));
 color: #fff;
 border: 0;
 border-radius: 999px;
 padding: 0.9rem 1.2rem;
 font-weight: 700;
 width: 100%;
 box-shadow: 0 10px 22px rgba(247, 88, 66, 0.28);
 cursor: pointer;
}

.big-circle {
 display: none;
}

input::placeholder, textarea::placeholder {
  color: #1e2126;
  font-size: 14px;
}

/* a[href^="mailto:"],
a[href^="tel:"] {
 color: white;
 text-decoration: none;
} */
a[href^="mailto:"]:hover,
a[href^="tel:"]:hover {
 text-decoration: underline;
}

#commonform {
  /* padding: 2.3rem 2.2rem; */
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
  text-align: center;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

/* .input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 25px;
  transition: 0.3s;
} */

.select {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.8rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 25px;
  transition: 0.3s;
}

/* textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 130px;
  border-radius: 22px;
  resize: none;
  overflow-y: auto;
} */

/* .input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
} */

.btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: var(--font-size-9);
  color: var(--color-danger);
  line-height: 1;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  display: inline;
}

.btn:hover {
  background-color: transparent;
  color: var(--text-white);
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: var(--color-danger);
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-info .title {
  color: var(--color-danger);
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
  font-size: 1.1rem;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 1.1rem;
}

.information p {
  font-size: 1.1rem;
}

.icon {
  width: 28px;
  margin-right: 0.7rem;
  font-size: var(--font-size-8);
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #333;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #ff6969, #d31f1f);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: var(--transition-2);
}

.social-icons a:hover {
  transform: scale(1.05);
  background: transparent;
  color: var(--text-black);
  border: 1px solid var(--color-danger);
}

.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid var(--color-danger);
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

.g-recaptcha {
  width: 100%;
  transform: scale(1);
  margin: 1rem;
}

/*-----======= Achivement Section =======-----*/
.achievement-container {
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.achievement-container .counters {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.achievement-container .counter {
  width: 150px;
  background-color: var(--color-white);
  color: #000;
  padding: 10px;
  border-radius: 1rem;
  padding: 1rem;
  cursor: pointer;
  transition: var(--transition-2);
}

.value {
  display: inline;
}

.counters .counter:hover {
  box-shadow: rgba(220, 71, 52, 0.8) 0px 2px 8px 0px;
  transform: translateY(-5px);
}


.number img {
  width: 30px;
  height: 30px;
  background: transparent;
  margin-right: 0.3rem;
}

.counters .counter .number {
  font-weight: 700;
  font-size: 20px;
}

/* 
.counters .customer .number {
  color: #fd297b;
}

.counters .project .number {
  color: #2760dc;
}

.counters .employee .number {
  color: #58c0cf;
}

.counters .award .number {
  color: #a667f8;
} */

.number {
  color: var(--color-danger);
}

.counters .counter .detail {
  font-size: 15px;
  font-weight: 500;
  padding: 0;
  margin: 0;
}


/*-----======= Consultation Section =======-----*/
.consultation {
  /* margin: 4rem 0; */
  background: #24262b;
}

.consultation-container {
  padding: 2rem;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 2rem;
}

.consultation-left {
  color: var(--color-danger);

}

.consultation-left p {
  color: var(--text-white);
  font-size: 16px;
}

.consultation-left h2 {
  font-size: 29px;
}

.consultation-rigth {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: end;
}



/*-----======= Experience Section =======-----*/
.experience {
  background: #24262b;
  /*margin: 6rem 0 2rem 0;*/
  margin-top: -46px;
}

.experience-container {
  padding: 2rem;
}

.exp-header {
  text-align: center;
}

.exp-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.exp-description {
  text-align: center;
}

.exp-description p {
  color: var(--text-white);
  font-size: 1.2rem;
}

/*-----======= Our-Team Section =======-----*/

/* .team {
  background-color: var(--color-bg-body);
  margin: 3rem 0 6rem 0;
}

.team-header {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.team-member-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-member {
  width: 280px;
  background: var(--color-white);
  border: 1px solid var(--color-danger);
  border-radius: 5px;
  padding: 1rem;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  box-shadow: rgb(177, 119, 119);
}

.team-member:hover {
  background: transparent;
  border-color: var(--color-danger);
}

.team-member-info  h4 {
  color: var(--color-danger);
  font-size: var(--font-size-6);
}

.team-member-info *{
  text-align: center;
}

.team-member-info p {
  color: var(--text-black);
  font-size: 1.1rem;
  font-family: var(--font-family-3);
}

.team-mem-socials {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: -100%;
  display: flex;
  flex-direction: column;
  background: var(--color-danger);
  border-radius: 1rem 0 0 1rem;
  box-shadow:  -2rem 0 2rem rgba(0, 0, 0, 0.3);
}

.team-member:hover .team-mem-socials {
  transition: var(--transition);
  right: 0;
}

.team-mem-socials a {
  padding: 1rem;
}

.team-mem-socials  i {
  color: var(--text-white);
} */

.our-team {
  margin-top: 0;
}


#team {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.heading {
  font-size: 1rem;
  color: #2c2c2c;
  font-weight: 500;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 20px;
}

.heading h2 {
  color: var(--color-danger);
  margin: 0;
  font-size: 2rem;
}


.heading span {
  background: var(--color-danger);
  border-radius: 20px;
  padding: 0.5rem;
  margin-top: 3rem;
  position: relative;
  margin-bottom: 1rem;
}

.heading span::before {
  content: "";
  display: block;
  background: linear-gradient(135deg, transparent, var(--color-danger), var(--color-danger), var(--color-danger));
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: 40%;
  top: 1.8rem;
  transform: rotate(45deg);
}

.box {
  width: 266px;
  height: 340px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 10px;
  margin: 20px;
  position: relative;
}

.container-team {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar {
 width: 50%;
    height: 4px;
    position: absolute;
    left: 50%;
    top: -19px;
    transform: translate(-50%);
    background-color: #333;
    border-radius: 0 0 10px 10px;
}

.verify {
  color: #333;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav .heart:before {
  content: '\f004';
  font-family: fontAwesome;
  line-height: 30px;
  z-index: 1;
  cursor: pointer;
}

.nav .heart-btn {
  display: none;
}

.details {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.details img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  margin: 1rem 0;
}

.details h4 {
  margin-bottom: 0.5rem;
  font-size: 18px;
  color: var(--text-dark);
}

.details strong {
  color: var(--text-muted);
  font-size: 14px;
}

.btn {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn a {
  height: 45px;
  width: 45px;
  border-radius: 10px;
  font-size: 22px;
  line-height: 45px;
  color: #333;
}

.btn a i {
  padding-left: 13px;
}

.btn a:hover {
  color: #fff;
  background-color: #333;
  transition: all ease 0.3s;
}

.box:hover {
  transform: scale(1.01);
  transition: all ease 0.1s;
}

/* Flip Card Wrapper */
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 100%;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.box:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Front and Back Sides */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  backface-visibility: hidden;
}

/* Front Side */
.flip-card-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Back Side */
.flip-card-back {
  background-color: var(--color-danger);
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  text-align: center;
}

.flip-card-back h4 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.flip-card-back p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: white;
}

/*-----======= FAQs Section =======-----*/

:root{
  --tc-primary:#ff6b5b;
  --tc-text:#1a1f27;
  --tc-muted:#6b7582;
  --tc-line:#e9edf2;
  --tc-card:#fff;
  --tc-bg:#f7f9fb;
}

/* SECTION */
.cert-faqs{ background:linear-gradient(180deg, #fff 0%, #fff5f3 100%); padding:70px 0;margin-top: -47px; }
.faqs-wrap{
  display:grid;
  grid-template-columns: 1.25fr 0.9fr;  /* left > right */
  gap:36px;
  align-items:start;
}

/* TITLE */
.faqs-title{
  font-size:2rem; font-weight:800; color:var(--tc-text); margin:0 0 18px;
  position:relative;
}
.faqs-title:after{
  content:""; display:block; width:64px; height:3px; background:var(--tc-primary);
  margin-top:10px; border-radius:2px;
}

/* FAQ LIST */
.faqs-list{ display:flex; flex-direction:column; gap:14px; }

.faq{
  background:var(--tc-card);
  border:1px solid var(--tc-line);
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,.04);
}

.faq-head{
  width:100%; text-align:left; background:transparent; border:0;
  padding:16px 18px; display:flex; align-items:center; justify-content:space-between; gap:12px;
  cursor:pointer;
}
.faq-q{
  color:var(--tc-text); font-weight:800; font-size:1.02rem; line-height:1.45;
}
.faq-icon{
  flex:0 0 auto; width:28px; height:28px; line-height:28px; text-align:center;
  border-radius:6px; font-weight:900;
  color:var(--tc-primary); background:#fff3f1; transition:transform .2s ease;
}

.faq-body{
  display:none; padding:0 18px 16px; border-top:1px solid var(--tc-line);
}
.faq-body p{ color:#444; font-size:.97rem; line-height:1.65; margin:12px 0 0; }

/* OPEN STATE */
.faq.open .faq-icon{ transform:rotate(45deg); } /* + to x */
.faq.open .faq-body{ display:block; animation:faqIn .22s ease; }
@keyframes faqIn{
  from{ opacity:0; transform:translateY(-6px); }
  to{ opacity:1; transform:translateY(0); }
}

/* RIGHT IMAGE CARD */
.faqs-image-card{
  position:sticky; top:90px;   /* sticks while scrolling */
  background:var(--tc-card);
  border:1px solid var(--tc-line);
  border-radius:16px;
  padding:14px;
  box-shadow:0 10px 28px rgba(0,0,0,.06);
}
.faqs-image-card img{
  display:block; width:100%; height:auto; border-radius:12px;
}

/* HOVER FEEL */
.faq:hover{ border-color:#e6e8ee; box-shadow:0 10px 26px rgba(0,0,0,.06); }
.faq-head:hover .faq-q{ color:var(--tc-primary); }

/* RESPONSIVE */
@media (max-width: 1100px){
  .faqs-wrap{ grid-template-columns: 1fr; }
  .faqs-image-card{ position:static; order:-1; margin-bottom:16px; }
}
@media (max-width: 560px){
  .cert-faqs{ padding:46px 0; }
  .faq-head{ padding:14px 16px; }
  .faq-q{ font-size:.98rem; }
  .faq-icon{ width:26px; height:26px; }
}

/*-----======= Testimonials Section =======-----*/

.section__container {
  margin: auto;
  padding: 2rem 1rem;
  text-align: center;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 1rem;
}

.section__container h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.section__container h1 {
  position: relative;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.section__container h1::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 2px;
  width: 5rem;
  background-color: var(--primary-color);
}

.section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.section__card {
  width: 100%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 1.5rem 2rem;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.section__card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 100%;
  transform: translate(-50%, -50%);
  width: 20%;
  aspect-ratio: 1;
  border-radius: 100%;
  background-color: var(--primary-color);
  z-index: -1;
  transition: 0.5s;
}

.section__card span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
  font-size: 3rem;
  color: var(--white);
}

.section__card p {
  margin-bottom: 1rem;
  color: var(--text-light);
  transition: 0.3s;
}

.section__card img {
  margin-bottom: 1rem;
  max-width: 100px;
  border-radius: 100%;
  border: 2px solid var(--primary-color);
  transition: 0.3s;
}

.section__card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: 0.3s;
}

.section__card h6 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
  transition: 0.3s;
}

.section__card:hover::before {
  width: 400%;
}

.section__card:hover :is(h4, h5) {
  color: var(--white);
}

.section__card:hover :is(p, h6) {
  color: var(--secondary-color);
}

.section__card:hover img {
  border-color: var(--white);
}

/*-----======= Partner Section =======-----*/
.partner-area {
  margin: 6rem 0;
}

.partner-area-container {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}

.partner-area-header {
  text-align: center;
  margin-bottom: 1rem;
}

.partner-area-container ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap-reverse;
}

.partner-area-container ul li {
  display: inline-block;
  margin: 0.5rem 1rem;
}

.partner-area-container ul li img {
  display: inline-block;
  border-radius: 100%;
  height: 100px;
  width: 100px;
  border: 3px solid var(--color-danger-variant);
}

/*-----======= Mobile-Tablet Navbar Section =======-----*/

.check-btn {
  color: black;
  font-size: 2.25rem;
  float: right;
  line-height: 1.7;
  cursor: pointer;
  display: none;
}


.mobile_navbar {
  display: none;
  width: 100%;
  background-color: black;
  flex-direction: row;
  padding: 8px;
  position: fixed;
  width: 100%;
  top: 0px;
  justify-content: space-between;
  align-items: center;
}

.navbar-hamburger {
  cursor: pointer;
  display: none;
  flex-direction: column;
}

.bar {
  width: 25px;
  height: 3px;
  color: red;
  background-color: white;
  margin: 3px 0;
}

.mobile_logo {
  width: 100%;
  max-width: 6rem;


}

.drawer {
  display: none;
  flex-direction: column;
  background-color: white;
  padding: 15px;
}


/*-----======= Certification Style Section =======-----*/
/* ====== Breadcrumb Area ====== */
.breadcrumb-area {
  position: relative;
  background-size: cover;
  background-position: center;
  width: 100%;
  max-height: 500px;
  margin-top: 5rem;
  color: #fff;
  overflow: hidden;
}

/* 🔸 Black Transparent Overlay */
.breadcrumb-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* transparent black */
  z-index: 1;
}

/* Responsive top spacing */
@media screen and (max-width: 1003px) {
  .breadcrumb-area {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .breadcrumb-area {
    margin-top: 2rem;
  }
}

/* ====== Breadcrumb Container ====== */
.breadcrumb-container {
  position: relative;
  z-index: 2; /* keeps text above overlay */
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  /* justify-content: center; */
  padding: 5rem 1rem;
  /* text-align: center; */
}

/* ====== Header Title ====== */
.breadcrumb-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.breadcrumb-header h1 span {
  color: #ff6b5b; /* your theme orange */
   display: inline; 
}

/* ====== Breadcrumb Links ====== */
.breadcrumb-list {
  display: flex;
  gap: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  flex-wrap: wrap;
  /* justify-content: center; */
}

.breadcrumb-list a {
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
  color: #ff6b5b;
}

/* active item */
.breadcrumb-list li:last-child a {
  color: #ff6b5b;
  cursor: default;
}

/* ====== Optional Description (if used) ====== */
.breadcrumb-desc p {
  color: #fff;
  font-size: 1rem;
  /* max-width: 600px; */
  margin-top: 1rem;
  line-height: 1.6;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .breadcrumb-header h1 {
    font-size: 1.8rem;
  }
  .breadcrumb-list a {
    font-size: 0.9rem;
  }
}



/*---===== About Certificate Section =====---*/
.about-cert {
  margin: 0;
}

.about-cert-container {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 6rem;
  padding: 4rem 2rem;
}

@media (max-width: 768px) {
  .about-cert-container {
    grid-template-columns: 1fr;
  }

  .about-cert-content {
    order: 2;
  }

  .contact-form {
    order: 1;
  }
}

.about-cert-img img {
  width: 100%;
  max-width: 800px;
}

.about-cert-content h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.about-cert-container .contact-form form {
  width: 100%;
  max-width: 400px;
}

.about-cert-container .contact-form form .circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #a33928);
  position: absolute;
}

.about-cert-container .contact-form form .circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: 0;
}

.about-cert-container .contact-form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  border-radius: 32px;
}

.about-cert-container .about-cert-content p:last-child {
  margin-bottom: 0;
}

.about-cert-container .contact-form form textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 100px;
  border-radius: 22px;
  resize: none;
  overflow-y: auto;
}

.about-cert-container .contact-form form .circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 0;
}

.about-cert-content p {
  margin-bottom: 1.5rem;
}

.about-cert-content p a {
  display: inline;
  color: #007bff;
  font-size: 1rem;
  transition: var(--transition-3);
}

.about-cert-content p a:hover {
  color: var(--color-danger);
}

.enquiry-from {
  display: flex;
  align-items: center;
  justify-content: center
}

.enquiry-from .form {
  width: 100%;
}


.about-cert-container .contact-form:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}

/*---===== Consultation Section =====---*/
.cert-consultation {
  margin: 0;
  background: #24262b;
  margin-top: 2rem;
}

/*---===== Certificate Content Section =====---*/


.cretificate-content-container {
  padding: 2rem 2.5rem;
  background-color: rgb(255, 255, 255);
  box-shadow: rgb(218, 223, 228) 0px 20px 30px -10px;
  border-radius: 5px;
}

.card-peopl-header h2{
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--color-danger);
}

.cretificate-content-container>div p {
  color: var(--text-black);
}

.cretificate-content-container>div {
  margin-bottom: 2rem;
}

.cert-content-ul p a {
  display: inline;
  color: rgb(166, 172, 173);
  font-size: 1.1rem;
  transition: var(--transition-3);
}



.cert-content-ul p {
  font-size: 1.1rem;
  color: var(--text-black);
}

.cert-content-ul li {
  margin-bottom: 1rem;
}

.cert-content-ul li strong {
  font-size: 1.25rem;
  color: var(--color-danger);
}


/*---===== Section Services Section =====---*/
.section-services p,a,h1,h2,h3,h4,h5,h6,ul,li {
  margin: 0;
  padding: 0;
}

.section-services {
  color: #202020;
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-services .header-section {
  margin-bottom: 34px;
}

.section-services .header-section .title {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 32px;
}

.section-services-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.section-services .header-section .title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #000000;
  border-radius: 3px;
  color: var(--color-danger);
}


.section-services .header-section .description {
  font-size: 14px;
  color: #282828;
}

.section-services .single-service {
  position: relative;
  margin-top: 30px;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  overflow: hidden; /* Hide overflowing content */
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  height: 300px; /* Set a fixed height for each box */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.section-services .single-service .content {
  position: relative;
  z-index: 2;
}

.section-services .single-service .circle-before {
  position: absolute;
  top: 0;
  right: 0px;
  transform: translate(40%, -40%);
  width: 150px;
  height: 150px;
  background-color: #000000;
  border: 6px solid var(--color-danger);
  transition: all .6s;
  border-radius: 50%;
}

.section-services .single-service:hover .circle-before {
  width: 100%;
  height: 100%;
  transform: none;
  border: 0;
  border-radius: 0;
  opacity: 1;
}

.section-services .single-service .icon {
  display: inline-block;
  margin-bottom: 26px;
  width: 70px;
  height: 70px;
  background-color: #000000;
  border-radius: 5px;
  line-height: 70px;
  text-align: center;
  color: #fff;
  font-size: 30px;
  transition: all .3s;
}

.section-services .single-service:hover .icon {
  background-color: #fff;
  color: #000000;
}

.section-services .single-service .title {
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 21px;
  transition: color .3s;
}

.section-services .single-service:hover .title {
  color: #fff;
}

.section-services .single-service .description {
  margin-bottom: 20px;
  font-size: 14px;
  transition: color .3s;
}

.section-services .single-service:hover .description {
  color: #fff;
}

.section-services .single-service a {
  position: relative;
  font-size: 18px;
  color: #202020;
  text-decoration: none;
  font-weight: 500;
  transition: color .3s;
}

.section-services .single-service:hover a {
  color: #fff;
}

.section-services .single-service a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #000000;
  transition: background-color .3s;
}

.section-services .single-service:hover a:after {
  background-color: #fff;
}

.cretificate-content-container>div p a {
  display: inline;
}



/*---===== Certificate FAQs Section =====---*/

.faqs-cert-container {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 2rem;
  padding: 2rem;
}

.faq-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
}

.faq-image .faq-cert-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-image img {
  width: 100%;
  max-width: 600px;
  height: fit-content;
  box-shadow: 0px 0 30px var(--color-danger);

}

.faq-ans p a {
  display: inline;
}

.cert-faqs .faqs-cert-container .faqs-container .faq {
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0rem;
  height: fit-content;
  background: var(--text-white);
  cursor: pointer;
}

/*---===== Certificate Testimonials Section =====---*/
.cert-testimonials .testimonial-container {
  padding-top: 2rem;
}

.testimonial-cert-sec {
  display: grid;
  grid-template-columns: 32% 32% 32%;
  gap: 2rem;
  padding-top: 2rem;
}

.testimonial-cert-sec>div {
  margin-bottom: 2rem;
}


/* .input-container select option {
  background-color: var(--color-danger);
  font-size: 0.8rem;
} */

.certification-team {
  padding: 2rem 0;
}


/*-----======= About Us Page Section Style =======-----*/
/* ===== Modern Horizontal Timeline (TopCertifier Theme) ===== */
.process-section {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  margin-top: 0%;
}

.process-section .aboutpage-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #ff6b5b;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Timeline Container */
.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

/* Horizontal Line */
.process-timeline::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 50px;
  right: 50px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b5b, #f6b5aa);
  border-radius: 2px;
  z-index: 1;
}

/* Step Item */
.process-timeline .step {
  position: relative;
  text-align: center;
  flex: 1;
  z-index: 2;
}

/* Circle Number */
.process-timeline .circle {
  width: 80px;
  height: 80px;
  background: #fff;
  border: 4px solid #ff6b5b;
  color: #ff6b5b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}
.process-timeline .circle span {
  display: block;
  transform: translateY(2px);
}
.process-timeline .step:hover .circle {
  background: #ff6b5b;
  color: #fff;
  transform: scale(1.08);
}

/* Step Content */
.process-timeline .content h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #1a1a1a;
}
.process-timeline .content p {
  color: #5f5f5f;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* Responsive Mobile Layout */
@media (max-width: 900px) {
  .process-timeline {
    flex-direction: column;
    align-items: center;
  }
  .process-timeline::before {
    top: 0;
    left: 50%;
    height: 100%;
    width: 4px;
    transform: translateX(-50%);
  }
  .process-timeline .step {
    flex: none;
    margin-bottom: 60px;
  }
  .process-timeline .circle {
    margin-bottom: 15px;
  }
  .process-timeline .step::after {
    content: "";
    position: absolute;
    top: 80px;
    left: 50%;
    width: 2px;
    height: 60px;
    background: #ff6b5b;
    transform: translateX(-50%);
    z-index: 0;
  }
  .process-timeline .step:last-child::after {
    display: none;
  }
}





/*-----======= role-of-security-assessors Page Style =======-----*/


.role-card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  bottom: 0;
}

.role-content-intro p {
  padding: 1rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 400;
  color: #636060;
}


.role-page-card{
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  flex-grow: 0;
  max-width: 100%;
  background-color: #FFF;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
  margin: 1rem;
}


.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  line-height: 1.33;
  font-weight: 700;
}



.card-intro {
  margin-top: 1rem;
  line-height: 1.5;
  font-size: 1rem;
}

.button-container {
  margin-top: 1rem;
}

.button-container {
  display: flex;
  align-items: center;
  justify-self: center;
}

.btn-c {
  display: inline;
  width: 45%;
  height: 44px;
  border: none;
  border-radius: 4px;
  background-image: radial-gradient(circle farthest-corner at 10% 20%, rgb(255, 113, 113) 0%, rgb(250, 112, 176) 90%);
  font-size: 17px;
  color: white;
  cursor: pointer;
}


/*-----======= Consultation Section =======-----*/
.conslntn {
  margin: 4rem 0;
  background: #24262b;
}

.conslntn-container {
  padding: 2rem;
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 2rem;
}

.conslntn-left {
  color: var(--color-danger);

}

.conslntn-left p {
  color: var(--text-white);
}

.conslntn-rigth {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: end;
}

.role-content-2 p a {
  display: inline;
  font-size: 1.1rem;
  color: #0000FF;
}


.role-content-2 h2 {
  margin-bottom: 1.5rem;
  /* margin-top: 40px; */
}


/* ====== People Also Ask (Cards Grid) ====== */
.card-people-container{
  width:100%;
  display:grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap:24px;
  align-items:stretch;
  /* margin: 0 80px; */
}

/* Responsive columns */
@media (max-width:1200px){ .card-people-container{ grid-template-columns: repeat(4,1fr);} }
@media (max-width:992px){  .card-people-container{ grid-template-columns: repeat(3,1fr);} }
@media (max-width:768px){  .card-people-container{ grid-template-columns: repeat(2,1fr);} }
@media (max-width:520px){  .card-people-container{ grid-template-columns: 1fr; } }

/* Card base */
.card-people{
  display:flex;
  flex-direction:column;
  background:var(--tc-surface);
  border:1px solid var(--tc-border);
  border-radius:12px;
  box-shadow:var(--tc-shadow-1);
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease;
  margin:0;                 /* align with grid gap */
}

.card-people:hover{
  transform:translateY(-4px);
  box-shadow:var(--tc-shadow-2);
}

.card-people-img{
  padding:20px 20px 0 20px;
  position:relative;
  background:var(--tc-surface);
}

.card-people-img img{
  width:50%;
  max-width:220px;
  margin:0 auto;
  display:block;
  transition:transform .5s ease;
}

.card-people:hover .card-people-img img{ transform:scale(1.04); }

.card-people-body{
  padding:18px 20px 20px;
}

.card-people-title{
  font-size:1.05rem;
  line-height:1.35;
  font-weight:700;
  color:var(--tc-text);
  text-align: center;
}

.card-people-intro{
  margin-top:.6rem;
  line-height:1.55;
  color:var(--tc-text-muted);
  font-size:.95rem;
}

/* Buttons */
.button-container{
  display:flex;
  gap:.75rem;
  align-items:center;
  width:100%;
  margin-top:1rem;
}

.card-people-btn-card,
.btn-card{
  display:block;
  width:100%;
  height:44px;
  border:none;
  border-radius:8px;
  background:var(--tc-primary);
  color:var(--tc-on-primary);
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:background-color .2s ease, transform .1s ease;
}

.card-people-btn-card:hover,
.btn-card:hover{ background:var(--tc-primary-600); }

.card-people-btn-card:active,
.btn-card:active{ transform:translateY(1px); }

.card-people-btn-card:focus-visible,
.btn-card:focus-visible{
  outline:3px solid color-mix(in oklab, var(--tc-primary) 35%, white);
  outline-offset:2px;
  box-shadow:0 0 0 3px color-mix(in oklab, var(--tc-primary) 25%, transparent);
}

/* Skeleton loaders */
.skeleton{
  border-radius:6px;
  background-color:#eef1f4;
  background-image:linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.6), rgba(255,255,255,0));
  background-size:40px 100%;
  background-repeat:no-repeat;
  background-position:left -40px top 0;
  animation:shine 1s ease infinite;
}
.card-people-title.skeleton{ min-height:28px; }
.card-people-intro.skeleton{ min-height:72px; }
.card-people-btn-card.skeleton{ min-height:44px; }

@keyframes shine{ to{ background-position:right -40px top 0; } }

/* ====== Alternate “People Also Ask” Hover Cards (container8) ====== */

.button{
  background-color:var(--tc-primary);
  color:var(--tc-on-primary);
  border:none;
  border-radius:10px;
  padding:12px 16px;
  font-weight:600;
  cursor:pointer;
  transition:background-color .2s ease, transform .1s ease;
}
.button:hover{ background-color:var(--tc-primary-600); }
.button:active{ transform:translateY(1px); }

/* Motion preferences */
@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; }
}
:root{
  --tc-primary: #ff6b5b;           /* Enquire Now button color */
  --tc-primary-600: #f35a49;
  --tc-primary-700: #e14b3a;
  --tc-on-primary: #ffffff;

  --tc-surface: #ffffff;
  --tc-surface-soft: #fff7f4;      /* the peachy section bg */
  --tc-text: #1b1f23;
  --tc-text-muted: #5b6770;

  --tc-border: #eceff1;
  --tc-shadow-1: 0 4px 10px rgba(0,0,0,.08);
  --tc-shadow-2: 0 10px 24px rgba(0,0,0,.12);
}

/*------------------cost-benefits-------------------*/

.material-symbols-outlined{
  color: #F75842;
  position: relative;
  top: 5px;
}

.cretificate-content-container {
  padding: 4rem 3rem 2rem 3rem;
}
.container_costs .row {
  display: flex; /* or display: grid; */
  justify-content: space-between; /* or any other alignment you prefer */
}
.container-service {
  width: 1200px !important;
  padding: 0 !important;
  margin-right: auto;
  margin-left: auto;
  @media screen and (min-width: 992px) and (max-width: 1439px) {
    .container-service{
    max-width: 1279px !important;
    padding: 0 !important;
    margin: 0 80px !important;
    width: auto !important;
    }
  }
  @media screen and (max-width: 991px) {
    .container-service{
    max-width: 959px !important;
    margin: 0 16px !important;
    padding: 0 !important;
    width: auto !important;
    }
  }
}
.gradient-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding: 30px;
}
.container-title {
  text-align: center;
  padding: 0 !important;
  margin-bottom: 40px;
  font-size: 40px;
  color: #fff;
  font-weight: 600;
  line-height: 60px;
}
.card {
  border: 0;
  width: 100%;
  margin-inline: auto;
}
.container-card {
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(71deg, #fff, #fff, #fff);
  background-clip: padding-box;
  border-radius: 45px;
  padding: 40px;
}
  /* img {
    margin-bottom: 32px;
  } */
.bg-green-box,
.bg-white-box,
.bg-yellow-box,
.bg-blue-box {
  position: relative;
}
.bg-green-box::after,
.bg-white-box::after,
.bg-yellow-box::after,
.bg-blue-box::after {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  content: "";
  z-index: -1;
  border-radius: 45px;
}
.bg-green-box::after {
  background: linear-gradient(71deg, #0D1212, #3DA077, #0D1212);
}
.bg-white-box::after {
  background: linear-gradient(71deg, #121013, #B0AFB0, #121013);
}
.bg-yellow-box::after {
  background: linear-gradient(71deg, #110E0E, #AFA220, #110E0E);
}
.bg-blue-box::after {
  background: linear-gradient(71deg, #0C0A0E, #5F6FAD, #0C0A0E);
}
.card-title {
  font-weight: 1000;
  color: white;
  letter-spacing: -0.02em;
  line-height: 40px;
  font-style: normal;
  font-size: 28px;
  padding-bottom: 8px;
}
.card-description {
  font-weight: 400;
  line-height: 32px;
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 16px;
}


/*-------------road-map---------------*/
.section-padding {
  padding-top: 30px;
  padding-bottom: 30px;
}
section {
  display: block;
}
@media (max-width: 768px){
.timeline {
    flex-direction: column;
    align-items: center;
}
.timeline {
    display: flex;
    justify-content: space-between;
}
}
.container-roadmap {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}
.timeline {
  display: flex;
  justify-content: space-between;
}
.single_service {
  position: relative;
  width: 32%;
  padding: 20px;
  border: 2px solid #ccc;
  border-radius: 14px;
  text-align: center;
  background-color: #F9F9F9;
  margin-top: 20px;
}
.single_service1 {
  position: relative;
  width: 50%;
  padding: 20px;
  border: 2px solid #ccc;
  border-radius: 14px;
  text-align: center;
  background-color: #F9F9F9;
  margin-top: 20px;
  justify-content: center;
  align-items: center;
  margin-left: 25%;
}
.single_service2 {
  position: relative;
  width: 60%;
  padding: 20px;
  border: 2px solid #ccc;
  border-radius: 14px;
  text-align: center;
  background-color: #F9F9F9;
  margin-top: 20px;
  margin-left: 2%;
}
.box1{
  position: absolute;
  top: -10px;
  left: -10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(black, red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
}
@media(max-width:400px){
  .container-roadmap{
    width: 100%;
  }
  .single_service{
    width: 100%;
  }
  .single-service1{
    width: 100%;
    margin-left: 2rem;
    height: 10%;
    justify-content: center;
    align-items: center;
  }
  }
  /*clip-path: circle(23.5% at 50% 50%);*/



  /*--------------------------------lead auditing--------------------------------*/

/* ===== Theme ===== */
:root{
  --brand:#f75842;
  --ink:#222;
  --muted:#666;
  --bg:#fff;
  --soft:#f7f7f9;
  --radius:12px;
  --shadow:0 8px 24px rgba(0,0,0,.08);
}

.about-cert *{ box-sizing:border-box; }
.about-cert{ background:var(--bg); color:var(--ink); line-height:1.6; }

/* ===== Container & headings ===== */
.about-cert-container{
  max-width:1100px;
  margin-inline:auto;
  padding: clamp(16px,2.5vw,32px);
}
.about-cert-content h3{
  font-size: clamp(20px,2.2vw,26px) !important;
  margin: 0 0 8px;
  font-weight:800;
  letter-spacing:.2px;
}
.about-cert-content p{ margin:.4rem 0 1rem; color:#3a3a3a; }
.about-cert .img{ margin:12px 0 18px; }
.about-cert .img img{ max-width:100%; height:auto; border-radius:10px; display:block; }

/* ===== Schedule card + table ===== */
.class2{
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding: clamp(14px,2vw,22px);
  overflow:hidden;
}
.class2 table{ width:100%; border-collapse:collapse; }
.class2 thead th{
  text-transform:uppercase;
  letter-spacing:.8px;
  background:var(--brand);
  color:#fff;
  text-align:left;
  padding:16px 18px;
  font-weight:800;
}
.class2 thead th:nth-child(3){ text-align:center; }
.class2 tbody tr{ border-bottom:1px solid #eee; }
.class2 tbody tr:last-child{ border-bottom:none; }
.class2 td{
  padding:14px 18px;
  vertical-align:middle;
  color:#2c2c2c;
}
.class2 td:nth-child(2){ font-weight:600; }
.class2 td:nth-child(3){ text-align:center; }


/* .menu-button .button:hover{ transform:translateY(-1px); box-shadow:0 10px 22px rgba(247,88,66,.35); } */
/* .menu-button .button a{ color:#fff; text-decoration:none; } */

/* ===== Bulleted lists ===== */
ul.bullet{ padding-left:18px; margin:10px 0; }
ul.bullet .default-bullet{ list-style:disc; margin:6px 0; }
ul.bullet p{ margin:2px 0 10px; color:#444; }

/* ===== “Other Courses” grid cards ===== */
.Our-Service-container{ max-width:1100px; margin-inline:auto; }
.content-box1{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  /* gap: clamp(14px,2vw,22px); */
  margin-top: 20px;
}
.content-box1 > h3{
  grid-column: 1 / -1;
  margin: 0 0 -4px;
}
.content-box1 .card{
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px 14px 16px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:3px;
  text-align:center;
  transition:transform .15s ease, box-shadow .2s ease;
}

.content-box1 .card.img1 img {
  max-width: 80px;     /* smaller image size */
  height: auto;
}

.content-box1 .card:hover{ transform:translateY(-3px); box-shadow:0 12px 28px rgba(0,0,0,.12); }
.content-box1 .card img{ width:100%; max-width:120px; border-radius:10px; }
.content-box1 .card h2{ font-size: clamp(16px,1.8vw,20px); margin:6px 0 8px; color:#2f2f2f; }
.content-box1 .card .menu-button{ margin-top:auto; }

/* ===== Responsive table → stacked cards on mobile ===== */
@media (max-width: 760px){
  .class2 thead{ display:none; }
  .class2 tbody tr{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    padding:14px 12px;
    margin-bottom:12px;
    border:1px solid #efefef;
    border-radius:10px;
  }
  .class2 td{ padding:0; display:flex; justify-content:space-between; gap:10px; border:none; }
  .class2 td::before{
    content: attr(data-label);     /* set via tiny JS below or manually */
    font-weight:700;
    color:#555;
  }
  .menu-button .button{ width:100%; }
}

.abt-container{
  background-color: #fff;
  padding: 30px;
}

.abt-container h3{
  color: #333;
  font-size: 20px;
  margin: 20px 0 20px 0;
  font-size: 26px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.abt-container h3::after{
content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #f75842;
    margin-top: 8px;
    border-radius: 3px;
}

.menu-button {
  text-align: center;
}

.button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
}

/* ===== TopCertifier — Shieldbyte-style Footer ===== */
:root{
  --tc-primary:#ff6b5b;          /* TopCertifier orange */
  --tc-primary-600:#f35a49;
  --tc-bg-1:#0f1b2c;             /* deep navy */
  --tc-bg-2:#0b1422;             /* darker navy */
  --tc-on:#ffffff;
  --tc-muted:#cfd6de;
  --tc-line:rgba(255,255,255,.12);
}

.tc-footer{
  position:relative;
  color:var(--tc-on);
  background:
    radial-gradient(60% 140% at -10% 110%, rgba(255,107,91,.28) 0%, rgba(255,107,91,0) 55%),
    linear-gradient(135deg, var(--tc-bg-1) 0%, var(--tc-bg-2) 70%);
  padding:64px 0 44px;
  overflow:hidden;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* subtle diagonal beams */
.tc-footer::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(60deg, rgba(255,255,255,.06) 0%, transparent 12%) 0 0/240px 240px,
    linear-gradient(60deg, rgba(255,255,255,.05) 0%, transparent 14%) 80px -60px/260px 260px;
  pointer-events:none;
  opacity:.25;
}

.tc-footer .grid{
  position:relative; z-index:1;
  display:grid; gap:36px;
  grid-template-columns: 1.2fr 1.2fr 1.2fr 1fr; /* L, L, Mid, Right */
}

.tc-footer h5 + ul{ margin-top:8px; }

.tc-footer ul{ margin:0; padding:0; list-style:none; }
.tc-footer li{ margin:10px 0; }
.tc-footer a, .tc-footer p{
  color:var(--tc-muted); font-size:.96rem; line-height:1.55;
  text-decoration:none; transition:color .2s ease;
}
.tc-footer a:hover{ color:var(--tc-primary); }

/* split columns (left two each have two groups) */
.tc-footer .stack{ display:grid; gap:28px; }
.tc-footer .stack .group + .group{ margin-top:0; }

.tc-footer .contact li{ display:flex; gap:12px; align-items:flex-start; }
.tc-footer .contact i{ color:var(--tc-primary); margin-top:4px; }

/* Socials */
.tc-footer .socials{
  display:flex; gap:10px; margin:8px 0 18px;
}
.tc-footer .socials a{
  width:36px; height:36px; display:inline-flex; align-items:center; justify-content:center;
  border-radius:50%; background:#162236; border:1px solid var(--tc-line); color:#fff;
  transition:background .2s ease, transform .08s ease;
}
.tc-footer .socials a:hover{ background:var(--tc-primary); transform:translateY(-1px); }

/* Newsletter */
.tc-footer .newsletter label{ display:block; margin:16px 0 8px; color:var(--tc-on); font-weight:700; }
.tc-footer .newsletter .row{
  display:flex; gap:0;
}
.tc-footer .newsletter input{
  flex:1; min-width:0;
  background:#121e32; color:#fff; border:1px solid #203049; border-right:none;
  padding:10px 14px; border-radius:8px 0 0 8px; outline:none;
}
.tc-footer .newsletter button{
  background:var(--tc-primary); color:#fff; border:none;
  padding:10px 16px; border-radius:0 8px 8px 0; font-weight:700; cursor:pointer;
  transition:background .2s ease;
}
.tc-footer .newsletter button:hover{ background:var(--tc-primary-600); }

/* Divider icons/badges (optional) */
.fot-badges{
  display:flex; gap:28px; align-items:center; flex-wrap:wrap;
  margin-top:28px; opacity:.95;
  justify-content: center;
}
.fot-badges img{ height:56px; object-fit:contain; filter:drop-shadow(0 2px 8px rgba(0,0,0,.25)); }

/* Bottom bar */
.tc-footbar{
  background:#0a0f18; border-top:1px solid var(--tc-line); color:var(--tc-muted);
  text-align:center; padding:16px 0 8px;
}
.tc-footbar .container{ display:flex; gap:12px; flex-wrap:wrap; align-items:center; justify-content:center; }
.tc-footbar a{ color:var(--tc-primary); text-decoration:none; }
.tc-footbar a:hover{ text-decoration:underline; }

@media (max-width:1100px){ .tc-footer .grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width:600px){
  .tc-footer{ padding:44px 0 30px; }
  .tc-footer .grid{ grid-template-columns: 1fr; }
}
/* ==================footer-bottom=========== */

.footer-bottom {
  background:#0a0f18;
  border-top:1px solid rgba(255,255,255,.12);
  color:#cfd6de;
  text-align:center;
  padding:16px 0 12px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: auto;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom a {
  color: #fff;
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
.footer-bottom .copyright {
  display: flex;
  align-items: center;
  color: white;
}

.footer-col h4 {
  font-size: 20px;
  color: white;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: var(--color-danger);
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

/* ---------------client----------- */
#ourclients {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-bottom:30px;
  height:100px;
}
#ourclients .clients-wrap {
  display: block;
  width: 95%;
  margin: 0 auto;
  overflow: hidden;
}
#ourclients .clients-wrap ul {
  display: block;
  list-style: none;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
#ourclients .clients-wrap ul li {
  display: block;
  float: left;
  position: relative;
  width: 220px;
  height: 100px;
  line-height: 100px;
  text-align: center;
}
#ourclients .clients-wrap ul li img {
  vertical-align: middle;
  max-width: 100%;
  width:150px;
  max-height: 100%;
  -webkit-transition: 0 linear left;
  -moz-transition: 0 linear left;
  transition: 0 linear left;
}
#ourclients h3{
  padding:10px;
}
.grecaptcha-badge {
  visibility: hidden;
}

/* input::placeholder,
textarea::placeholder {
  color: #fff;
  opacity: 1; 
} */

.whatsapp-float, .email-float{
  position: fixed;
  left: 0;
  width: 56px;
  height: 56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,.15);
  z-index:9999;
  transition: transform .2s ease, box-shadow .2s ease;
}

/* WhatsApp bubble (top) */
.whatsapp-float{
  top: calc(50% - 70px);
  background:#25D366;
}
.whatsapp-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,.2);
}
.whatsapp-float::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  pointer-events:none;
  box-shadow:0 0 0 0 rgba(37,211,102,.5);
  animation: wa-pulse 2s infinite;
}

/* Email bubble (bottom) */
.email-float{
  top: calc(50% + 10px);
  background:#0078FF; /* BLUE email button */
}
.email-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,.2);
}
.email-float::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  pointer-events:none;
  box-shadow:0 0 0 0 rgba(0,120,255,.5); /* Blue glow */
  animation: mail-pulse 2s infinite;
}

/* Animations */
@keyframes wa-pulse{
  0%   { box-shadow:0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow:0 0 0 22px rgba(37,211,102,0); }
  100% { box-shadow:0 0 0 0 rgba(37,211,102,0); }
}

@keyframes mail-pulse{
  0%   { box-shadow:0 0 0 0 rgba(0,120,255,.5); }
  70%  { box-shadow:0 0 0 22px rgba(0,120,255,0); }
  100% { box-shadow:0 0 0 0 rgba(0,120,255,0); }
}

/* Chat popup ring (danger/red) */
.open-chat-popup{ position: relative; } /* ensure a containing block for ::after */

.open-chat-popup::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  pointer-events:none;
  box-shadow:0 0 0 0 rgba(211,63,37,.5);            /* valid shadow value */
  animation: wa-pulse-danger 2s infinite;
}

@keyframes wa-pulse-danger{
  0%   { box-shadow:0 0 0 0  rgba(211,63,37,.5); }
  70%  { box-shadow:0 0 0 22px rgba(211,63,37,0); }
  100% { box-shadow:0 0 0 0  rgba(211,63,37,0); }
}

/* extra */
img, video {
  max-width: 100%;
  height: auto;
}

.contact-v2 {
  background: var(--bg);
  color: var(--text);
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.contact-v2__wrap {
  max-width: 1150px;
  margin: 0 auto;
}

.contact-v2__header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-v2__title {
  
  font-size: 38px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.contact-v2__subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-v2__grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 35px;
}

@media (max-width: 900px) {
  .contact-v2__grid {
    grid-template-columns: 1fr;
  }
}

.contact-cardc {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 25px;
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-cardc:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.contact-card__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f4f4f4;
}

.contact-card__row:last-child {
  border-bottom: none;
}

.contact-card__icon {
  background: var(--brand);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 16px;
}

.contact-cardc h3 {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}

.contact-cardc p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.contact-map {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  border: 2px solid #fff;
  margin-top: 20px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-v2__form {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  border: 1px solid #f0f0f0;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.f-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .f-inline {
    grid-template-columns: 1fr;
  }
}

.f-field input,
.f-field textarea {
  width: 100%;
  padding: 14px 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  color: #333;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.f-field textarea {
  resize: vertical;
  min-height: 120px;
}

.f-field input:focus,
.f-field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(255, 107, 74, 0.1);
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-hover));
  color: #fff;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.25s ease, transform 0.1s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-hover), var(--brand));
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.contact-v2::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.15), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.contact-v2::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.15), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}


.f-field { position: relative; display: block; }

.f-field input,
.f-field textarea{
  padding: 20px 12px 12px;  
}

.f-field > span{
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--muted);
  background: var(--card);  
  padding: 0 6px;
  pointer-events: none;
  transition: top .15s ease, transform .15s ease, color .15s ease;
}

.f-field input:focus + span,
.f-field textarea:focus + span,
.f-field input:not(:placeholder-shown) + span,
.f-field textarea:not(:placeholder-shown) + span{
  top: 0;                            
  transform: translateY(-50%) scale(.86);
  color: var(--brand);
}

.f-field .f-msg{ display:block; margin-top:6px; font-size:12px; color:var(--muted); }


.servicepage_area{
  --brand:#ff6b4a;
  --brand-2:#ff5a36;
  --bg:#fff6f3;
  --card:#ffffff;
  --text:#222;
  --muted:#666;
  --border:#efefef;
  --radius:14px;
  --shadow:0 10px 25px rgba(0,0,0,.06);
}

.section-padding{ padding: 56px 16px; }
.servicepage_area .container{ max-width:1200px; margin:0 auto; }

.servicepage_area .row1{
  display:grid;
  gap:20px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}
@media (max-width: 1100px){ .servicepage_area .row1{ grid-template-columns: repeat(3,1fr); } }
@media (max-width: 820px){  .servicepage_area .row1{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){  .servicepage_area .row1{ grid-template-columns: 1fr; } }

.servicepage_area .servicepage_details{
  display:flex; flex-direction:column; gap:16px;
}

.servicepage_area .servicepage_photo{
  background: var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}

.servicepage_area .servicepage_heading h4{
  margin:0 0 12px;
  font-size:18px;
  color:var(--text);
  display:flex; align-items:center; gap:10px;
}
.servicepage_area .servicepage_heading h4 b{ font-weight:700; font-size: 19px;}
.servicepage_area .servicepage_heading h4::before,
.servicepage_area .servicepage_heading h4::after{
  content:""; flex:1; height:1px;
  background: linear-gradient(90deg, var(--brand), transparent);
  opacity:.25;
}

/* Links list */
.servicepage_area .servicepage_heading p{ margin:0; }
.servicepage_area .servicepage_heading p + p{ margin-top:6px; }

.servicepage_area .servicepage_heading a{
  display:flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius:10px;
  color:var(--text);
  text-decoration:none;
  border:1px solid transparent;
  transition: background .2s ease, border-color .2s ease, transform .06s ease, color .2s ease;
}
.servicepage_area .servicepage_heading a::before{
  content:"›";
  font-weight:700; line-height:1;
  color: var(--brand);
  transform: translateX(0);
  transition: transform .15s ease, color .2s ease;
}
.servicepage_area .servicepage_heading a:hover{
  background:#fff0eb;       
  border-color:#ffe0d9;
  transform: translateX(2px);
}
.servicepage_area .servicepage_heading a:hover::before{
  transform: translateX(2px);
  color: var(--brand-2);
}
.servicepage_area .servicepage_heading a:active{
  transform: translateX(1px) scale(.995);
}

.servicepage_area .servicepage_details .col-sm-4,
.servicepage_area .servicepage_details .col-md-3{
  width:100%; padding:0; margin:0;
  display:block; 
}

.servicepage_area{
  background:
    radial-gradient(500px 240px at -5% -10%, rgba(255,107,74,.12), transparent 60%),
    radial-gradient(420px 220px at 105% 110%, rgba(255,179,71,.12), transparent 60%),
    var(--bg);
}


/* ============================
   ABOUT CERT SECTION STYLING
   ============================ */

.about-cert {
  background: #f9fafc;
  padding: 70px 0;
  font-family: "Poppins", sans-serif;
  color: #333;
  position: relative;
  overflow: hidden;
}

.about-cert::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.4), rgba(255, 255, 255, 0.7));
  z-index: 0;
}

.about-cert-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: start;
  gap: 60px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-cert-content {
  background: #fff;
  padding: 40px 45px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-left: 5px solid #f75842;
  transition: all 0.3s ease;
}

.about-cert-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.about-cert-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #444;
}

.about-cert-content a {
  color: #f75842;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.about-cert-content a:hover {
  border-bottom: 1px solid #f75842;
}

.about-cert-content b {
  color: #222;
}

.about-cert-content h3 {
  font-size: 22px;
  color: #111;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-cert-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-cert-content {
    padding: 30px 25px;
    margin-top: 30px;
  }

  .contact-form {
    padding: 30px 25px;
  }
}

/* =======================================
   ISO 9001 CONSULTING PAGE STYLING
   ======================================= */

.cretificate-content {
  background: #f9fafc;
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
  color: #333;
  margin-top: -46px;
}

.cretificate-content-container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 25px; */
  display: flex;
  flex-direction: column;
  /* gap: 60px; */
}

/* ---------- HEADINGS ---------- */
.cretificate-content h2 {
  font-size: 26px;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cretificate-content h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #f75842;
  margin-top: 8px;
  border-radius: 3px;
}

/* ---------- PARAGRAPH STYLING ---------- */
.cretificate-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 18px;
  text-align: justify;
}

.cretificate-content a {
  color: #f75842;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cretificate-content a:hover {
  text-decoration: underline;
}

/* ---------- UL / LI STYLING ---------- */
.cert-content-ul {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.cert-content-ul li {
  /* background: #fff; */
  /* margin-bottom: 22px; */
  border-radius: 12px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
  padding: 15px 30px;
  /* border-left: 5px solid #f75842; */
  transition: all 0.3s ease;
}

.cert-content-ul li:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.cert-content-ul li strong {
  display: block;
  font-size: 18px;
  color: #222;
  font-weight: 600;
  margin-bottom: 10px;
}

.cert-content-ul li p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.8;
  color: #555;
}

/* ---------- HIGHLIGHTED LINKS ---------- */
.cert-content-ul li a {
  color: #f75842;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.cert-content-ul li a:hover {
  border-bottom: 1px solid #f75842;
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 992px) {
  .cretificate-content h2 {
    font-size: 22px;
  }

  .cert-content-ul li {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .cretificate-content {
    padding: 60px 15px;
  }

  .cretificate-content-container {
    gap: 40px;
  }

  .cert-content-ul li strong {
    font-size: 17px;
  }
}


.tc-checker {
 background: linear-gradient(180deg, #141a22 0%, #181e27 100%);
 padding: clamp(1.8rem, 5vw, 3rem) 0;
 border-top: 1px solid rgba(255, 255, 255, 0.06);
 border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.tc-checker .tcx {
 max-width: 1100px;
 margin: 0 auto;
 padding: 0 1.2rem;
 text-align: center;
 color: #e7eaf6;
}

.tc-checker .tcx h3 {
 margin: 0 0 1rem;
 font-size: clamp(1.4rem, 3.2vw, 2rem);
 font-weight: 900;
 letter-spacing: 0.2px;
 color: #f75842;
}

.tc-checker .tcx .q {
 background: #ffffff;
 border: 1px solid #e9eef5;
 border-radius: 14px;
 box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
 max-width: 760px;
 margin: 0 auto 0.9rem;
 padding: 1.1rem 1rem;
 text-align: center;
}
.tc-checker .tcx .q p {
 margin: 0 0 0.7rem;
 color: #1e2126;
 font-weight: 700;
}

.tc-checker .tcx .q button {
 display: inline-block;
 margin: 0.2rem 0.35rem;
 padding: 0.55rem 1rem;
 border-radius: 999px;
 border: 1px solid rgba(247, 88, 66, 0.45);
 background: #fff;
 color: #f75842;
 font-weight: 800;
 cursor: pointer;
 transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease,
  transform 0.06s ease;
}
.tc-checker .tcx .q button:hover {
 background: #fef2ef;
 box-shadow: 0 8px 18px rgba(247, 88, 66, 0.18);
 transform: translateY(-1px);
}
.tc-checker .tcx .q button:active {
 transform: translateY(0);
}

.tc-checker .tcx .result {
 max-width: 760px;
 margin: 0.9rem auto 0;
 background: #ffffff;
 border: 1px solid #e9eef5;
 border-radius: 14px;
 box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
 padding: 1rem 1.1rem;
 color: #1e2126;
}
.tc-checker .tcx .result .cta {
 display: inline-block;
 margin-top: 0.5rem;
 padding: 0.6rem 1rem;
 border-radius: 999px;
 background: linear-gradient(135deg, #f75842, #ff7a5c);
 color: #fff;
 text-decoration: none;
 font-weight: 800;
 box-shadow: 0 10px 22px rgba(247, 88, 66, 0.22);
}
.tc-checker .tcx .result .cta:hover {
 box-shadow: 0 14px 30px rgba(247, 88, 66, 0.28);
}

/* our service */


.our-services {
 background: linear-gradient(180deg, #fff 0%, #fff5f3 100%);
 padding: clamp(2.5rem, 6vw, 5rem) 0;
 color: #1e2126;
 margin-top: -46px;
 border-top: 1px solid #e06e58;
}

.Our-Service-container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 1.2rem;
}

.services-header {
 text-align: center;
 margin-bottom: 1.75rem;
}
.services-header h1 {
 margin: 0;
 font-size: clamp(1.8rem, 4.8vw, 2.6rem);
 font-weight: 800;
 letter-spacing: 0.2px;
}

.content-box {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
 gap: clamp(14px, 2vw, 22px);
}

.card {
 background: #fff;
 border-radius: 16px;
 box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
 padding: 18px 16px;
 display: grid;
 grid-template-rows: auto auto 1fr;
 align-items: start;
 text-align: center;
 transition: transform 0.18s ease, box-shadow 0.25s ease;
 border: 1px solid rgba(0, 0, 0, 0.06);
}
.card:hover {
 transform: translateY(-4px);
 box-shadow: 0 16px 32px rgba(247, 88, 66, 0.18);
 border-color: rgba(247, 88, 66, 0.35);
}

.card img {
 /* width: 64px; */
 /* height: 64px; */
 object-fit: contain;
 margin: 6px auto 12px;
 display: block;
}

.card h2 {
 margin: 0 0 6px;
 font-size: 1.05rem;
 line-height: 1.35;
 font-weight: 800;
}
.card h2 a {
 color: #1e2126;
 text-decoration: none;
 font-size: 19px;
 border-bottom: 1px dashed transparent;
 transition: color 0.2s ease, border-color 0.2s ease;
}
.card:hover h2 a {
 color: #f75842;
 border-bottom-color: rgba(247, 88, 66, 0.5);
}

.card p {
 margin: 0;
 color: #5a6373;
 font-size: 0.95rem;
 line-height: 1.5;
}

.card a:focus {
 outline: 3px solid rgba(247, 88, 66, 0.5);
 outline-offset: 2px;
 border-radius: 10px;
}

@media (max-width: 380px) {
 .card {
  padding: 14px;
 }
 .card img {
  width: 56px;
  height: 56px;
 }
 .card h2 {
  font-size: 1rem;
 }
}

.card-cities {
 font-size: 0.9rem;
 color: #6b6f76;
 margin-top: 0.4rem;
 line-height: 1.5;
}
.card:hover .card-cities strong {
 color: #f75842;
}

/* === Section title === */
section .document h2 {
  /* color: #ff4e2e; */
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* === Carousel container === */
.docs-carousel {
  width: 100%;
  background: linear-gradient(180deg, #fff8f7 0%, #ffeae6 100%);
  padding: 30px 0 50px;
  position: relative;
}

/* Owl fix — keep cards same height */
.owl-carousel .owl-stage {
  display: flex;
  align-items: stretch;
  margin-bottom: 20px;
}
.owl-carousel .owl-item {
  display: flex;
  justify-content: center;
}

/* === Card === */
.doc-card {
  position: relative;
  display: block;
  width: 250px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.doc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

/* === Image === */
.doc-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.doc-card:hover .doc-img {
  transform: scale(1.05);
}

/* === Overlay === */
.doc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 78, 46, 0.92);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.doc-card:hover .doc-overlay {
  opacity: 1;
}

/* === Overlay header (title + icon) === */
.doc-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}
.doc-thumb {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
}
.doc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.doc-desc {
  margin: 0;
}

/* === Download button === */
.doc-download {
  background: #fff;
  color: #ff4e2e;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  padding: 12px 14px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.doc-download:hover {
  background: #ff4e2e;
  color: #fff;
  transform: scale(1.1);
}

/* === Carousel arrows === */
.owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
}
.owl-nav button {
  pointer-events: auto;
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff !important;
  border: 1px solid #ffc6b9 !important;
  color: #ff4e2e !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}
.owl-nav button:hover {
  transform: scale(1.1);
  border-color: #ff4e2e !important;
}
.owl-nav .owl-prev {
  left: -25px;
}
.owl-nav .owl-next {
  right: -25px;
}

/* === Dots === */
.owl-dots {
  text-align: center;
  margin-top: 20px;
}
.owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 4px;
  background: #ffc3b4;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.owl-dots .owl-dot.active span {
  width: 22px;
  background: #ff4e2e;
  border-radius: 10px;
}

/* === Responsive === */
@media (max-width: 992px) {
  .doc-card {
    width: 220px;
  }
}
@media (max-width: 768px) {
  .doc-card {
    width: 200px;
  }
  section .document h2 {
    font-size: 1.5rem;
  }
  .owl-nav .owl-prev {
    left: -10px;
  }
  .owl-nav .owl-next {
    right: -10px;
  }
}


/* ===================== DOCUMENTATION SECTION ===================== */

/* ----- Heading ----- */
.document {
  text-align: center;
  margin-bottom: 50px;
}

.document h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-black);
  text-transform: uppercase;
  /* border-bottom: 3px solid #e63946; */
  display: inline-block;
  padding-bottom: 10px;
  letter-spacing: 1px;
}

/* ----- Carousel Container ----- */
.carousel-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

/* ----- Owl Carousel Base ----- */
.owl-carousel {
  position: relative;
}

/* Navigation Arrows */
.owl-prev,
.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #e63946;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  font-size: 20px;
  transition: all 0.3s ease;
}

.owl-prev:hover,
.owl-next:hover {
  background: #b52a35;
}

.owl-prev {
  left: -25px;
}

.owl-next {
  right: -25px;
}

/* Before JS loads (grid fallback) */
.cards-d:not(.owl-loaded) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.cards-d.owl-loaded {
  display: block;
}

/* Centering items inside owl slides */
.owl-carousel .owl-item {
  display: flex;
  justify-content: center;
}

/* ----- Card Styling ----- */
.cardd {
  position: relative;
  width: 250px;
  height: 320px;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #222;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cardd:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Card Image */
.card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 25px;
  transition: all 0.4s ease;
}

.card:hover .card__image {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Overlay */
.card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(0deg, rgba(230,57,70,0.95) 0%, rgba(230,57,70,0.8) 70%, transparent 100%);
  color: #fff;
  border-radius: 0 0 15px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  text-align: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.cardd:hover .card__overlay {
  height: 55%;
  opacity: 1;
}

/* Overlay Text */
.card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
  color: #fff;
}

/* Download Button */
.download {
  background-color: #fff;
  color: #e63946;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.download:hover {
  background-color: #e63946;
  color: #fff;
  transform: scale(1.1);
}

/* ----- Responsive Layout ----- */
@media (max-width: 1024px) {
  .cardd {
    width: 220px;
    height: 290px;
  }
}

@media (max-width: 768px) {
  section#documentation {
    padding: 50px 0;
  }

  .cardd {
    width: 180px;
    height: 250px;
  }

  .owl-prev,
  .owl-next {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .document h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .cardd {
    width: 150px;
    height: 210px;
  }

  .document h2 {
    font-size: 1.3rem;
  }
}

.form-title{
  color: white;
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.section_title h2{
  text-align: center;
}