@import url("https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Bungee+Spice&family=Cormorant+Upright:wght@300;400;500;600;700&family=Cormorant:ital,wght@0,300..700;1,300..700&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Podkova:wght@400..800&family=Rye&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap");
/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
:root {
  --primary: #fdbe33;
  --secondary: #040505;
  --light: #f5f5f5;
  --dark: #321101;
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  color: #212020;
  font-family: var(--default-font);
  overflow-x: hidden;
  z-index: 0;
  font-family: "Arvo", serif;
  font-weight: 400;
  font-style: normal;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.social-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: 2px solid #fdbe33;
  transition: 0.3s ease;
}

.social-circle i {
  font-size: 16px;
}

.social-circle:hover {
  background: #fdbe33;
  color: #000;
}

.simple-heading {
  font-size: 32px;
  font-weight: 600;
  color: #fdbe33;
  text-align: center;
}

/* Tablet */
@media (max-width: 992px) {
  .simple-heading {
    font-size: 26px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .simple-heading {
    font-size: 22px;
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(
    var(--accent-color) 50%,
    color-mix(in srgb, var(--accent-color), transparent 75%) 52%
  );
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid #000;
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
.company-banner {
  background-image: url("../img/company-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 195px 0;
  color: white;
  position: relative;
  text-align: center;
}
.contact-banner {
  background-image: url("../img/contact-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 195px 0;
  color: white;
  position: relative;
  text-align: center;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.page-header h2 {
  position: relative;
  z-index: 2;
  font-size: 48px;
  text-transform: uppercase;
}
.breadcrumb-wrapper {
  padding: 20px 0;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em,
    rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em,
    rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
  z-index: 10;
  position: relative;
}

.breadcrumb-wrapper .breadcrumb {
  margin-bottom: 0;
  background: none;
}

.breadcrumb-wrapper .breadcrumb a {
  color: #321101;
  text-decoration: none;
}

.breadcrumb-wrapper .breadcrumb .active {
  color: #fdbe33;
}

@media (max-width: 992px) {
  .page-header {
    padding: 54px 0;
    margin-top: -25px;
  }
  .page-header h2 {
    font-size: 36px;
  }
  .topbar {
    display: none;
  }
  .navbar-toggler {
    margin-right: 42px;
  }
  .navbar {
    top: -3px !important;
  }
}

/* ================= ROOT ================= */
:root {
  --blue: #321101;
  --red: #edc55f;
  --gray: #f3f3f3;
}

/* ================= TOPBAR ================= */
.topbar {
  background: var(--gray);
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
  text-align: center;
}

/* ================= NAVBAR ================= */
.navbar {
  background: var(--blue);
  top: 32px; /* height of topbar */
  position: fixed;
  width: 100%;
  z-index: 1060;
  transition: top 0.3s ease;
}

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

.nav-link {
  color: #fff !important;
  font-weight: 500;
  padding: 8px 14px;
}

.nav-link:hover,
.nav-link.active {
  background: #2a0d02;
  border-radius: 4px;
}

/* ================= MEGA DROPDOWN ================= */
.dropdown-mega {
  position: static;
}

.dropdown-menu {
  width: 100%;
  border-top: 4px solid var(--red);
  padding: 1rem 0;
  margin-top: 0;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
  max-height: 80vh;
  overflow-y: auto;
}

.dropdown-menu h6 {
  background: var(--red);
  color: #fff;
  padding: 10px;
  font-size: 14px;
  margin-bottom: 5px;
}

.dropdown-menu strong {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--blue);
  text-transform: uppercase;
}

.dropdown-menu a {
  display: block;
  padding: 4px 10px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: var(--gray);
  color: #000;
}

/* Hover effect for desktop */
@media (min-width: 992px) {
  .dropdown-mega:hover > .dropdown-menu {
    display: block;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
  body {
    padding-top: 88px; /* topbar + navbar height */
  }

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

  .dropdown-menu {
    position: static;
    width: 100%;
    transform: none;
    box-shadow: none;
    padding: 0;
  }

  .dropdown-menu .row {
    flex-direction: column;
  }

  .dropdown-menu .col-md-3,
  .dropdown-menu .col-md-4 {
    border-right: none;
    border-bottom: 1px solid #ddd;
  }
}

/* Default body padding for desktop */
@media (min-width: 992px) {
  body {
    padding-top: 88px; /* topbar + navbar height */
  }
}
/* crousel */
.carousel-arrow {
  width: 40px;
  height: 40px;
  background: #321101;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  z-index: 2;
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  background: #4d1e07;
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev .carousel-arrow {
  left: 15px;
}

.carousel-control-next .carousel-arrow {
  right: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-arrow {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .carousel-arrow {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #321101;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 77px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #fff;
  margin: 4px 10px;
}

.section-title p {
  color: #fff;
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
  position: relative;
  overflow: hidden;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  position: relative;
}
.about:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 12%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.about .container {
  position: relative;
}

.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: #000;
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

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

.about .about-img {
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: 0.3s;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.about .about-img:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em,
    rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em,
    rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

/* Facts Section */
.facts {
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url("../img/counterbg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--light);
}

.facts .border {
  border: 2px solid var(--primary);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facts .border:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.facts i {
  font-size: 3rem;
  color: var(--primary);
}

.facts h2 {
  font-weight: 700;
  font-size: 3rem;
}

.facts span {
  display: block;
  margin-top: 10px;
  font-size: 1.1rem;
  color: var(--light);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .facts h2 {
    font-size: 2.5rem;
  }
  .facts i {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .facts h2 {
    font-size: 2rem;
  }
  .facts span {
    font-size: 1rem;
  }
  .facts .border {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .facts h2 {
    font-size: 1.8rem;
  }
  .facts i {
    font-size: 2rem;
  }
  .facts span {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-icon {
  width: 60px;
  height: 60px;
  background: #edc55f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
}
.why-box {
  display: flex;
  align-items: start;
  gap: 20px;
}

/* our products */
.fs-img-style {
  padding: 30px 20px;
}

.fs-heading {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* Card Layout */
.fs-card-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Card */
.fs-card {
  background: #ffffff;
  width: 400px;
  border-radius: 28px;
  padding: 35px 20px 30px;
  transition: 0.4s ease;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.fs-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

/* Circle Image */
.fs-img-circle {
  overflow: hidden;
  width: 250px;
  height: 250px;
  margin: 0 auto 20px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em,
    rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em,
    rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.fs-img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Title */
.fs-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

/* Text */
.fs-card p {
  font-size: 13px;
  color: #0f0e0e;
  line-height: 1.6;
  margin-bottom: 18px;
}
.fs-card a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 18px;
  background: #ffffff;
  color: #0f0e0e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 20px;
  border: 1px solid #0f0e0e;
  transition: all 0.3s ease;
}

/* Hover */
.fs-card a:hover {
  background: #0f0e0e;
  color: #ffffff;
}

/* ===== Responsive ===== */

@media (max-width: 991px) {
  .fs-heading {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .fs-card {
    width: 100%;
    max-width: 320px;
  }

  .fs-heading {
    font-size: 26px;
  }
}

/* infrastructure */
.diagram-wrapper {
  padding: 40px 30px;
  border-radius: 12px;
  color: #fff;
}

/* Title */
.diagram-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #321101;
}

/* Top Boxes */
.diagram-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: nowrap; /* 👈 one row */
}

.diagram-box {
  background: #321101;
  color: #fff;
  padding: 18px 30px;
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  min-width: 280px;
}

/* Connector lines */
.connector-line {
  width: 100%;
  height: 2px;
  background: #321101;
  margin: 30px auto;
}

.connector-row {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.connector-col .line {
  width: 2px;
  height: 30px;
  background: #321101;
  margin: auto;
}

/* Content Boxes */
.diagram-content-box {
  background: #1a1a1a;
  padding: 25px 30px;
  border-radius: 10px;
  width: 100%;
}

.diagram-content-box ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.diagram-content-box li {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  line-height: 1.6;
}

.diagram-content-box i {
  color: #edc55f;
  margin-top: 4px;
}

/* Full width bottom box */
.full-width {
  max-width: 100%;
}

/* =======================
   RESPONSIVE
======================= */

@media (max-width: 992px) {
  .diagram-row {
    flex-wrap: wrap; /* stack on tablet */
  }

  .diagram-box {
    min-width: 100%;
  }
}

@media (max-width: 576px) {
  .diagram-wrapper {
    padding: 25px 20px;
  }

  .diagram-title {
    font-size: 22px;
  }

  .diagram-content-box {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# About Section - Responsive
--------------------------------------------------------------*/
.lnk-about-wrapper {
  padding: 80px 20px;
  background: #f7f7f7;
}

.lnk-about-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* IMAGE AREA */
.lnk-about-images {
  position: relative;
  flex: 1;
}

.lnk-about-images .main-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.lnk-about-images .overlay-img {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 45%;
  border-radius: 12px;
  border: 6px solid #fff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

/* CONTENT AREA */
.lnk-about-content {
  flex: 1;
}

.lnk-subtitle {
  color: #edc55f;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.lnk-title {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1f1f1f;
}

.lnk-about-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 14px;
}

.lnk-about-list {
  padding-left: 18px;
  margin: 18px 0;
}

.lnk-about-list li {
  font-size: 15px;
  margin-bottom: 8px;
  position: relative;
}

.lnk-about-list li::marker {
  color: #edc55f;
}

.lnk-highlight {
  font-weight: 600;
  color: #333;
  margin-top: 18px;
}

.lnk-about-btn {
  display: inline-block;
  margin-top: 22px;
  padding: 14px 34px;
  background: #edc55f;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.lnk-about-btn:hover {
  background: #edc55f;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(198, 40, 40, 0.4);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .lnk-about-inner {
    flex-direction: column;
  }

  .lnk-about-images .overlay-img {
    right: 0;
    bottom: -30px;
  }

  .lnk-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .lnk-about-images .overlay-img {
    display: none;
  }
}

/* ===== Mission Vision Section ===== */
.mvv-section {
  padding: 80px 20px;
}

.mvv-container {
  max-width: 1200px;
  margin: auto;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

/* Arrow between boxes */
.mvv-grid::before,
.mvv-grid::after {
  content: "➜";
  position: absolute;
  top: 40%;
  font-size: 40px;
  color: #f1c423;
}

.mvv-grid::before {
  left: 31%;
}
.mvv-grid::after {
  left: 65%;
}

/* Card */
.mvv-card {
  background: #fff;
  padding: 35px 30px 40px;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.mvv-card:hover {
  transform: translateY(-10px);
}

/* Number Badge */
.mvv-badge {
  position: absolute;
  top: -22px;
  right: -22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.badge-mission {
  background: #edc55f;
}
.badge-vision {
  background: #3498db;
}
.badge-values {
  background: #e84393;
}

/* Headings */
.mvv-card h3 {
  margin-bottom: 15px;
  font-size: 25px;
  color: #030303;
  font-weight: 800;
  text-transform: uppercase;
}

.mvv-card p {
  line-height: 1.7;
}

/* Core Values List */
.mvv-card ul {
  padding-left: 18px;
  margin: 0;
}

.mvv-card ul li {
  font-size: 14.5px;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .mvv-grid {
    grid-template-columns: 1fr;
  }

  .mvv-grid::before,
  .mvv-grid::after {
    display: none;
  }
}
/* ================= CONTACT SECTION ================= */

.lnk-contact-section {
  padding: 80px 0;
  background: #f7f9fc;
}

.lnk-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 15px;
}

.lnk-section-header p {
  color: #edc55f;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.lnk-section-header h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* GRID */

.lnk-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.lnk-col-left,
.lnk-col-right {
  flex: 1;
  min-width: 400px;
}

/* CONTACT INFO */

.lnk-contact-info {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.lnk-info-item {
  display: flex;
  margin-bottom: 30px;
}

.lnk-info-item i {
  font-size: 32px;
  color: #edc55f;
  margin-right: 18px;
  margin-top: 5px;
}

.lnk-info-text h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.lnk-info-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* CONTACT FORM */

.lnk-contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.lnk-input-field {
  width: 100%;
  height: 48px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 10px 14px;
  font-size: 15px;
}

.lnk-textarea-field {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 12px 14px;
  font-size: 15px;
  resize: none;
  margin-bottom: 15px;
}

.lnk-input-field:focus,
.lnk-textarea-field:focus {
  outline: none;
  border-color: #321101;
}

.lnk-submit-btn {
  width: 100%;
  height: 50px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  background: #321101;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.lnk-submit-btn:hover {
  background: #321101;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .lnk-contact-section {
    padding: 50px 0;
  }

  .lnk-section-header h2 {
    font-size: 26px;
  }

  .lnk-contact-info,
  .lnk-contact-form {
    padding: 25px;
  }
}

/* faq */
.faq-img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.accordion-button {
  font-size: 17px;
  font-weight: 600;
  color: #321101;
}

.accordion-body {
  font-size: 15px;
  color: #555;
}
.accordion-button:not(.collapsed) {
  color: #ede9e7;
  background-color: #555;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0
    var(--bs-accordion-border-color);
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .faq-img {
    margin-bottom: 20px;
  }
  .accordion-button {
    font-size: 16px;
  }
}

/* about us home */
.welcome-section {
  padding: 70px 0;
  background: linear-gradient(#f2f2f2 1px, transparent 1px),
    linear-gradient(90deg, #f2f2f2 1px, transparent 1px);
  background-size: 40px 40px;
  background-color: #fff;
}

.main-title {
  text-align: center;
  margin-bottom: 55px;
}

.main-title h2 {
  font-size: 34px;
  font-weight: 700;
  color: #321101;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-title h2 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
  color: #030303;
  text-transform: uppercase;
}

.title-bar {
  width: 45px;
  height: 3px;
  background: #909090;
  margin: 15px auto 0;
}

/* Card boxes */
.content-box {
  background: #fff;
  border: 1px solid #e1e1e1;
  padding: 30px;
  height: 100%;
}

.content-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #0a0909;
  text-transform: uppercase;
}

/* CMD message */
.cmd-text {
  position: relative;
  padding-right: 20px;
}

.cmd-text:after {
  content: "\201C";
  position: absolute;
  top: -20px;
  right: 0;
  font-size: 80px;
  color: #050404;
  opacity: 0.4;
}

.cmd-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #090808;
}

.cmd-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.cmd-profile img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 3px;
}

.cmd-profile span {
  font-size: 14px;
  font-weight: 600;
}

/* About section */
.about-text {
  font-size: 14px;
  line-height: 1.9;
  color: #080707;
  text-align: justify;
}

/* Video box */
.video-box img {
  width: 100%;
  border-radius: 3px;
}

.video-title {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 500;
  color: #060606;
  text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
  .main-title h2 {
    font-size: 26px;
  }
}
/* mision  and vison */
.dfs-mvv-section {
  padding: 30px 20px;
  background: #f5f7fa;
}

.dfs-container {
  max-width: 1300px;
  margin: 0 auto;
}

.dfs-row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.dfs-row-reverse {
  flex-direction: row-reverse;
}

.dfs-img {
  flex: 1 1 45%;
  text-align: center;
}

.dfs-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  transition: transform 0.4s;
}

.dfs-img img:hover {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.dfs-content {
  flex: 1 1 50%;
}

.dfs-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #321101;
}

.dfs-content p {
  color: #0d0b0b;
  line-height: 1.7;
  margin-bottom: 15px;
}

.dfs-content ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.dfs-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #070606;
}

.dfs-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #321101;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 992px) {
  .dfs-row,
  .dfs-row-reverse {
    flex-direction: column;
  }
  .dfs-img,
  .dfs-content {
    flex: 1 1 100%;
    text-align: center;
  }
  .dfs-content h3 {
    font-size: 1.7rem;
  }
}

/* footer */
.footer {
  position: relative;
  background: url("../img/footerbg.jpg") center center / cover no-repeat;
  color: #321101;
  padding: 30px 20px;
}

.footer .footer-contact,
.footer .footer-link,
.footer .newsletter {
  position: relative;
  margin-bottom: 45px;
}

.footer h2 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #fdbe33;
}

.footer h2::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  left: 0;
  bottom: 0;
  background: #321101;
}

.footer .footer-link a {
  display: block;
  margin-bottom: 10px;
  color: #321101;
  transition: 0.3s;
}

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

.footer .footer-link a:hover {
  color: #fdbe33;
  letter-spacing: 1px;
}

.footer .footer-contact p i {
  width: 25px;
}

.footer .footer-social {
  position: relative;
  margin-top: 20px;
}

.footer .footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  padding: 7px 0;
  text-align: center;
  border: 1px solid rgba(256, 256, 256, 0.3);
  background: #321101;
  color: white;
  border-radius: 60px;
  transition: 0.3s;
}

.footer .footer-social a i {
  font-size: 15px;
  color: white;
}

.footer .footer-social a:hover {
  background: #fdbe33;
  border-color: #fdbe33;
}

.footer .footer-social a:hover i {
  color: #030f27;
}

.footer .newsletter .form {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.footer .newsletter input {
  height: 50px;
  border: 2px solid #121518;
  border-radius: 0;
}

.footer .newsletter .btn {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 40px;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fdbe33;
  background: #121518;
  border-radius: 0;
  border: 2px solid #fdbe33;
  transition: 0.3s;
}

.footer .newsletter .btn:hover {
  color: #121518;
  background: #fdbe33;
}

.footer .footer-menu .f-menu {
  position: relative;
  padding: 15px 0;
  font-size: 0;
  text-align: center;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
  border-bottom: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .footer-menu .f-menu a {
  color: #321101;
  font-size: 16px;
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu .f-menu a:hover {
  color: #fdbe33;
}

.footer .footer-menu .f-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.footer .copyright {
  padding: 30px 15px;
}

.footer .copyright p {
  margin: 0;
  color: #fdbe33;
}

.footer .copyright .col-md-6:last-child p {
  text-align: right;
}

.footer .copyright p a {
  color: #321101;
  font-weight: 500;
  letter-spacing: 1px;
}

.footer .copyright p a:hover {
  color: #321101;
}

@media (max-width: 768px) {
  .footer .copyright p,
  .footer .copyright .col-md-6:last-child p {
    margin: 5px 0;
    text-align: center;
  }
}
