:root {
  --asd-navy:#223955;
  --asd-navy-dark:#16283d;
  --asd-orange:#f7942e;
  --asd-orange-soft:#fff1e1;
  --asd-blue-soft:#eef4fb;
  --asd-text:#29384a;
  --asd-muted:#6e7b8b;
  --asd-white:#ffffff;
  --asd-border:#e8edf3;

}

* {
  box-sizing:border-box
}

body {
  font-family:'Inter','Segoe UI',Arial,sans-serif;
  color:var(--asd-text);
  line-height:1.65;
  background:#fff;
  overflow-x:hidden
}

a {
  text-decoration:none
}

.text-orange {
  color:var(--asd-orange)!important;
    font-size:20px;

}

.text-navy {
  color:var(--asd-navy)!important
}

.bg-soft {
  background:linear-gradient(135deg,#f8fbff,#fff6ec)
}

.btn-asd {
  background:var(--asd-orange);
  color:#fff;
  border:0;
  border-radius:50px;
  padding:12px 26px;
  font-weight:700;
  box-shadow:0 12px 25px rgba(247,148,46,.25);
  transition:.25s
}

.btn-asd:hover {
  background:#e9841d;
  color:#fff;
  transform:translateY(-2px)
}

.btn-outline-asd {
  border:2px solid var(--asd-navy);
  color:var(--asd-navy);
  border-radius:50px;
  padding:10px 24px;
  font-weight:700
}

.btn-outline-asd:hover {
  background:var(--asd-navy);
  color:#fff
}

.top-bar {
  background:var(--asd-navy-dark);
  color:#dfe8f4;
  font-size:14px;
  padding:8px 0
}

.top-bar a {
  color:#fff
}

/* menu */
.navbar {
  background: #fff;
  box-shadow: 0 12px 35px rgba(20, 40, 70, 0.08);
  padding: 12px 0;
}

.navbar-brand img {
  max-height: 100px;
  width: auto;
}

.navbar .nav-link {
  color: var(--asd-navy) !important;
  font-weight: 700;
  margin: 0 4px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--asd-orange) !important;
}

.dropdown-menu {
  border: 0;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(27, 43, 66, 0.15);
  padding: 12px;
}

.dropdown-item {
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 600;
  color: var(--asd-navy);
}

.dropdown-item:hover {
  background: var(--asd-orange-soft);
  color: var(--asd-orange);
}

/* second level parent */
.dropdown-submenu {
  position: relative;
}

/* second level menu */
.dropdown-submenu > .submenu-right {
  display: none;
}

/* desktop submenu */
@media (min-width: 992px) {
  .dropdown-submenu > .submenu-right {
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: 0;
    margin-left: -1px;
    min-width: 270px;
    display: none;
    z-index: 9999;
  }

  .dropdown-submenu:hover > .submenu-right,
  .dropdown-submenu:focus-within > .submenu-right {
    display: block;
  }

  /* invisible bridge to avoid mouse gap */
  .dropdown-submenu::after {
    content: "";
    position: absolute;
    top: 0;
    right: -12px;
    width: 14px;
    height: 100%;
    background: transparent;
  }
}

/* right arrow */
.submenu-arrow {
  position: relative;
  padding-right: 38px !important;
}

.submenu-arrow::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--asd-navy);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.submenu-arrow:hover::after {
  border-left-color: var(--asd-orange);
}

/* mobile submenu */
@media (max-width: 991px) {
  .navbar-brand img {
    max-height: 74px;
  }

  .dropdown-menu {
    box-shadow: none;
    border-radius: 12px;
    padding: 8px;
  }

  .dropdown-submenu > .submenu-right {
    position: static;
    margin-left: 15px;
    margin-top: 6px;
    border: none;
    box-shadow: none;
    background: rgba(15, 53, 87, 0.04);
  }

  .dropdown-submenu.open > .submenu-right {
    display: block;
  }

  .submenu-arrow::after {
    transform: translateY(-50%) rotate(90deg);
  }

  .dropdown-submenu.open > .submenu-arrow::after {
    transform: translateY(-50%) rotate(-90deg);
  }
}


.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden; /*added, it was visible*/
    margin: 0;
    padding: 0;
    line-height: 0;
    z-index: 1;
}

/* Banner Image */

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

/* TOP RIGHT ORANGE RING */

.hero-banner::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    border: 40px solid rgba(247, 148, 46, 0.18);
    border-radius: 50%;
    z-index: 3;
     pointer-events: none; /*added*/
}

/* BOTTOM LEFT BLUE RING */

.hero-banner::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -27px;
    width: 500px;
    height: 382px;
    border: 90px solid rgba(18, 52, 88, 0.12);
    border-radius: 50%;
    z-index: 3;

    /*bottom: -160px;
    left: -120px;
    width: 380px;
    height: 380px;
    border: 50px solid rgba(18, 52, 88, 0.12);
    border-radius: 50%;
    z-index: 1;*/
}

@media (max-width: 1200px) {
    
    .hero-banner::after {
        bottom: -71px;
        left: -38px;
        width: 430px;
        /*display: none;*/
    }
.hero-banner::before {
       
        display: none;
    }    
}

@media (max-width: 786px) {
    
    .hero-banner::after {
        bottom: -53px;
        left: -47px;
        width: 320px;
        /*display: none;*/
    }
.hero-banner::before {
       
        display: none;
    }    
}

@media (max-width: 486px) {
    
    .hero-banner::after {
       
        display: none;
    }
}


@media (max-width: 991px) {

  .navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    overflow: visible;
  }

  .navbar .container {
    position: relative;
    overflow: visible;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    background: #ffffff;
    padding: 15px;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 40px rgba(15, 53, 87, 0.18);
    z-index: 1040;

    max-height: calc(100vh - 95px);
    overflow-y: auto;

    transform-origin: top center;
    transition:
      height 0.35s ease,
      opacity 0.28s ease,
      transform 0.28s ease;
  }

  .navbar-collapse.show {
    opacity: 1;
    transform: translateY(0);
  }

  .navbar-collapse.collapsing {
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    background: #ffffff;
    padding: 15px;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 40px rgba(15, 53, 87, 0.18);
    z-index: 1040;

    overflow: hidden;
    opacity: 0.65;
    transform: translateY(-8px);

    transition:
      height 0.35s ease,
      opacity 0.28s ease,
      transform 0.28s ease;
  }

  .navbar .dropdown-menu {
    position: static;
    border: 0;
    box-shadow: none;
    padding: 8px;
    margin-top: 4px;
    background: rgba(15, 53, 87, 0.04);
  }

  .dropdown-submenu > .submenu-right {
    position: static;
    margin-left: 15px;
    margin-top: 6px;
    border: none;
    box-shadow: none;
    background: rgba(246, 178, 26, 0.08);
  }

  .dropdown-submenu.open > .submenu-right {
    display: block;
  }
}


/*Service AMC*/
.section {
  padding:30px 0
}

.section-title {
  max-width:820px;
  margin:0 auto 45px;
  text-align:center
}

.section-title .eyebrow {
  color:var(--asd-orange);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.5px;
  font-size:20px
}

.section-title h2 {
  color:var(--asd-navy);
  font-weight:900;
  font-size:clamp(30px,4vw,30px);
  margin:8px 0 15px
}

.section-title p {
  color:var(--asd-muted);
  font-size:17px
}

@media (max-width: 991px) 
{
  .section-title h2 {
    font-weight:700;
    font-size:clamp(20px,4vw,35px);
    margin:8px 0 15px
}

.section-title p {
  color:var(--asd-muted);
  font-size:14px
}
}


.icon-card {
  height:100%;
  padding:30px;
  border-radius:28px;
  background:#fff;
  border:1px solid var(--asd-border);
  box-shadow:0 18px 50px rgba(34,57,85,.08);
  transition:.3s
}

.icon-card:hover {
  transform:translateY(-8px);
  box-shadow:0 25px 70px rgba(34,57,85,.14)
}

.icon-card .icon {
  width:58px;
  height:58px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:var(--asd-orange-soft);
  color:var(--asd-orange);
  font-size:26px;
  margin-bottom:18px
}

.icon-card h3 {
  font-size:21px;
  font-weight:900;
  color:var(--asd-navy)
}

.icon-card p,.icon-card li {
  color:var(--asd-muted)
}

/* ==========================================
SERVICE DETAIL ROW DESIGN
========================================== */

.service-detail-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 35px;
  align-items: stretch;
  margin-bottom: 35px;
  padding: 28px;
  background: #ffffff;
  border-radius: 26px;
  border: 1px solid rgba(15, 53, 87, 0.10);
  box-shadow: 0 18px 45px rgba(15, 53, 87, 0.10);
  position: relative;
  overflow: hidden;
}

.service-detail-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 190px;
  height: 190px;
  background: rgba(246, 178, 26, 0.16);
  border-radius: 50%;
  z-index: 0;
}

.service-detail-content,
.service-detail-image {
  position: relative;
  z-index: 1;
}

.service-detail-content {
  padding: 8px 5px;
}

.service-detail-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--asd-navy), #123f68);
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 18px;
  box-shadow: 0 12px 26px rgba(15, 53, 87, 0.25);
}

.service-detail-content h3 {
  color: var(--asd-navy);
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 14px;
}

.service-detail-content p {
  color: var(--asd-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.service-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-feature-list > li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 11px;
  color: #34495e;
  font-size: 15.5px;
  line-height: 1.65;
}

.service-feature-list > li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--asd-orange);
  font-size: 16px;
}

.service-sub-list {
  list-style: none;
  padding: 10px 0 0 0;
  margin: 8px 0 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
}

.service-sub-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: #52606d;
  line-height: 1.0;
}

.service-sub-list li::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 2px;
  top: 1px;
  color: var(--asd-navy);
}

.service-detail-image {
  min-height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #eef4fb;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.service-detail-card:hover .service-detail-image img {
  transform: scale(1.06);
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(15, 53, 87, 0.16);
  transition: all 0.35s ease;
}

/* Export list can take more content gracefully */
.export-feature-list {
  columns: 1;
}

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

@media (max-width: 991px) {
  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px;
    border-radius: 22px;
  }

  .service-detail-content h3 {
    font-size: 23px;
  }

  .service-detail-content p {
    font-size: 15px;
  }

  .service-detail-image {
    order: 2;
  }

  .service-detail-content {
    order: 1;
  }

  .service-detail-image img {
    min-height: 260px;
  }
}

@media (max-width: 575px) {
  .service-detail-card {
    padding: 18px;
    margin-bottom: 28px;
  }

  .service-detail-icon {
    width: 54px;
    height: 54px;
    font-size: 22px;
    border-radius: 15px;
  }

  .service-detail-content h3 {
    font-size: 21px;
  }

  .service-feature-list > li {
    font-size: 14.5px;
  }

  .service-sub-list {
    grid-template-columns: 1fr;
  }

  .service-detail-image img {
    min-height: 230px;
  }
}

/*for bullets*/
.feature-list {
  list-style:none;
  padding:0;
  margin:0
}

.feature-list li {
  padding:8px 0 2px 32px;
  position:relative
}

.feature-list li:before {
  content:"\f00c";
  font-family:'Font Awesome 6 Free';
  font-weight:900;
  position:absolute;
  left:0;
  top:8px;
  color:var(--asd-orange)
}

/*for sublist */

.feature-list .feature-sub-list {
  margin-top: 8px;
  margin-bottom: 0;
  padding-left: 22px;
  list-style-type: circle;
}



.feature-list .feature-sub-list li {
  list-style-type: disc;
  list-style-position: outside;
  background: none !important;
  background-image: none !important;
  padding-left: 0 !important;
  line-height: 1;
}

/* Use this only if your main list uses custom icons through ::before */
.feature-list .feature-sub-list li::before {
  content: none !important;
  display: none !important;
}


/* ==========================================
APPLICATIONS / SOLUTIONS SECTION
========================================== */

.power-applications-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(246, 178, 26, 0.14), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(15, 53, 87, 0.12), transparent 30%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #eef4fb 100%);
}

.power-applications-section .section-title {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.power-applications-section .section-title p {
  max-width: 820px;
  margin: 14px auto 0;
  color: #5d6b78;
  font-size: 16px;
  line-height: 1.8;
}

/* Main Card */
.application-card {
  height: 100%;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 53, 87, 0.10);
  box-shadow: 0 18px 45px rgba(15, 53, 87, 0.10);
  transition: all 0.35s ease;
}

.application-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(15, 53, 87, 0.18);
}

/* Image Area */
.application-img {
  position: relative;
  height: 270px;
  overflow: hidden;
  background: #0f3557;
}

.application-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 53, 87, 0.02) 0%,
    rgba(15, 53, 87, 0.20) 52%,
    rgba(15, 53, 87, 0.70) 100%
  );
  z-index: 1;
}

.application-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.55s ease;
}

.application-card:hover .application-img img {
  transform: scale(1.08);
}

/* Tag */
.application-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-block;
  padding: 7px 14px;
  border-radius: 30px;
  background: #f6b21a;
  color: #0f3557;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

/* Content */
.application-content {
  padding: 26px 24px 28px;
}

.application-content h3 {
  margin: 0 0 12px;
  color: #0f3557;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.application-content p {
  margin: 0 0 18px;
  color: #5d6b78;
  font-size: 15px;
  line-height: 1.4;
  text-align: justify;
}

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

.application-content ul li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 24px;
  color: #263744;
  font-size: 14.5px;
  line-height: 1.55;
}

.application-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f6b21a;
  box-shadow: 0 0 0 4px rgba(246, 178, 26, 0.18);
}

/* Featured Middle Card */
.featured-application {
  border: 1px solid rgba(246, 178, 26, 0.45);
}

.featured-application .application-content h3 {
  color: #092c4a;
}

/* Bottom Strip */
.application-bottom-strip {
  margin-top: 44px;
  padding: 32px 34px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(15, 53, 87, 0.96), rgba(8, 31, 52, 0.98)),
    url("images/applications/power-pattern.jpg") center/cover no-repeat;
  color: #ffffff;
  box-shadow: 0 20px 55px rgba(15, 53, 87, 0.22);
}

.application-bottom-strip h3 {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
}

.application-bottom-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15.5px;
  line-height: 1.75;
}

.application-btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 40px;
  background: #f5a800;
  color: #0f3557;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 12px 26px rgba(246, 178, 26, 0.28);
}

.application-btn:hover {
  background: #ffffff;
  transform: translateY(-3px);
  border:1px solid #0f3557;;
}

/* Responsive */
@media (max-width: 991px) {
  .application-img {
    height: 220px;
  }

  .application-bottom-strip {
    text-align: center;
  }

  .application-btn {
    margin-top: 12px;
    font-size: 13px;
    padding: 11px 15px;
  }
}

@media (max-width: 575px) {
  .power-applications-section .section-title h2 {
    font-size: 28px;
  }

  .application-img {
    height: 205px;
  }

  .application-content {
    padding: 22px 20px 24px;
  }

 .application-btn {
    margin-top: 12px;
    font-size: 13px;
    padding: 9px 15px;

  }

  .application-content h3 {
    font-size: 20px;
  }

  .application-bottom-strip {
    padding: 26px 22px;
  }

  .application-bottom-strip h3 {
    font-size: 22px;
  }
}

/* ==============================
   Need Help on  Home Page
================================= */
.section-padding {
  padding: 30px 0;
}

.section-light {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 45%, #eef4fb 100%);
  position: relative;
  overflow: hidden;
}

.cta-strip {
  position: relative;
  overflow: hidden;
  padding: 45px 50px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0f3557 0%, #164d7a 55%, #343a40 100%);
  box-shadow: 0 25px 60px rgba(15, 53, 87, 0.25);
  color: #ffffff;
}

.cta-strip::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  top: -110px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.cta-strip::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: -60px;
  bottom: -70px;
  background: rgba(246, 178, 26, 0.25);
  border-radius: 50%;
}

.cta-strip h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
}

.cta-strip p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
}

.btn-power {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  background: #ffffff;
  color: #0f3557;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
}

.btn-power:hover {
  background: #f6b21a;
  color: #111111;
  transform: translateY(-3px);
  text-decoration: none;
}

@media (max-width: 767px) {
  .section-padding {
    padding: 30px 0;
  }

  .cta-strip {
    padding: 35px 25px;
    text-align: center;
    border-radius: 22px;
  }

  .cta-strip h2 {
    font-size: 25px;
  }

  .cta-strip p {
    font-size: 15px;
  }

  .btn-power {
    margin-top: 18px;
  }
}



/* ==============================
   How We Work Home Page
================================= */

/* Main flow row */
.flowchart-row {
  position: relative;
  padding-top: 35px;
}

/* Horizontal connecting line behind circles */
@media (min-width: 768px) {
/*  .flowchart-row::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 16%;
    right: 16%;
    height: 3px;
    background: linear-gradient(90deg, #0f3557, #f6b21a, #0f3557);
    z-index: 0;
  }*/

  .flowchart-row > div {
    position: relative;
    z-index: 2;
  }
}

/* Card design */
.timeline-item {
  position: relative;
  height: 100%;
  padding: 42px 28px 32px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(15, 53, 87, 0.12);
  box-shadow: 0 15px 40px rgba(15, 53, 87, 0.10);
  text-align: center;
  transition: all 0.35s ease;
  overflow: visible;
}

.timeline-item:hover {
  transform: translateY(-8px);
  border-color: rgba(246, 178, 26, 0.65);
  box-shadow: 0 25px 55px rgba(15, 53, 87, 0.18);
}

/* Step number circle */
.step-number {
  position: relative;
  z-index: 5;
  width: 70px;
  height: 70px;
  margin: -77px auto 24px;
  border-radius: 50%;
  background: #ffffff;
  border: 5px solid #f6b21a;
  color: #0f3557;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 
    0 0 0 12px #ffffff,
    0 12px 28px rgba(15, 53, 87, 0.20);
}

/* Card top border */
.timeline-item::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 5px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, #0f3557, #f6b21a);
}

/* Arrow between cards */
@media (min-width: 768px) {
  .flowchart-row > div:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 26px;
    right: -8px;
    width: 18px;
    height: 18px;
    border-top: 3px solid #0f3557;
    border-right: 3px solid #0f3557;
    transform: rotate(45deg);
    z-index: 4;
    background: transparent;
  }
}

/* Text styling */
.timeline-item h4 {
  font-size: 22px;
  font-weight: 800;
  color: #0f3557;
  margin-bottom: 12px;
}

.timeline-item p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #5d6b7a;
  margin-bottom: 0;
}

/* Mobile vertical flow */
@media (max-width: 767px) {
  .flowchart-row {
    padding-top: 25px;
  }

  .timeline-item {
    margin-bottom: 55px;
    padding: 42px 24px 30px;
  }

  .step-number {
    margin: -74px auto 22px;
  }

  .flowchart-row > div {
    position: relative;
  }

  .flowchart-row > div:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: 3px;
    height: 35px;
    background: #f6b21a;
    transform: translateX(-50%);
  }

  .flowchart-row > div:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 14px;
    height: 14px;
    border-right: 3px solid #f6b21a;
    border-bottom: 3px solid #f6b21a;
    transform: translateX(-50%) rotate(45deg);
  }
}

/* ==========================================
FEATURES TAB SECTION - SHIFTED TO ABOUTUS PAGE
========================================== */

.features {
  position: relative;
  overflow: hidden;
  padding: 50px 30px;
  background: #f8fbff;
}

/* Background Shapes */

.features .problem-bg-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.features .problem-bg-shape-one {
  width: 420px;
  height: 420px;
  background: rgba(247, 148, 46, 0.08);
  top: -140px;
  right: -140px;
}

.features .problem-bg-shape-two {
  width: 520px;
  height: 520px;
  background: rgba(25, 52, 85, 0.06);
  bottom: -220px;
  left: -220px;
}

/* Keep main content above background shapes */

.features .container {
  position: relative;
  z-index: 2;
}

/* Small instruction text */

.tab-help-wrap {
  text-align: center;
  margin: 20px 0 15px;
}

.tab-help-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1f3d5c;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Tabs Layout */

.features-tabs {
  border: 0;
  margin-bottom: 35px;
}

/* Tab Button Design */

.features-tabs .nav-link {
  position: relative;
  width: 100%;
  height: 100%;
  /*min-height: 105px;*/
  border: 1px solid rgba(31, 61, 92, 0.20);
  border-radius: 18px;
  padding: 18px 12px;
  background: #ffffff;
  color: #1f3d5c;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.features-tabs .nav-link i {
  display: block;
  font-size: 28px;
  margin-bottom: 8px;
  color: #f7942e;
}

.features-tabs .nav-link h4 {
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}

/* Desktop font size only */

@media (min-width: 992px) {
  .features-tabs .nav-link h4 {
    font-size: 18px;
  }

 
}

/* Hover Effect */

.features-tabs .nav-link:hover {
  transform: translateY(-5px);
  border-color: #f7942e;
}

/* Active Tab */

.features-tabs .nav-link.active {
  background: linear-gradient(135deg, #f7942e, #ffb35c);
  color: #ffffff;
  border-color: #f7942e;
}

.features-tabs .nav-link.active i {
  color: #ffffff;
}

/* Small arrow below active tab */

.features-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #f7942e;
}

/* Tab Content */
.tit {
  font-size: inherit; /* mobile and tablet */
}

@media (min-width: 992px) {
  .tit {
    font-size: 18px; /* desktop only */

  }
}

.features-tab-content {
  margin-top: 20px;
}

.feature-main-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

/* Mobile and Tablet */

@media (max-width: 991.98px) {
  .features {
    padding: 40px 15px;
  }

  .features-tabs .nav-link {
    /*min-height: 50px;*/
    padding: 5px 5px;
  }

  .features-tabs .nav-link i {
    font-size: 25px;
  }

  .feature-main-image {
    border-radius: 16px;
  }
}

/* ==================================================
Used as Background for Unstable Power on index and about us
   ================================================== */

.problem-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(247, 148, 46, 0.15), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(34, 57, 85, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 46%, #fff6ec 100%);
}

.problem-bg-shape {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.75;
}

.problem-bg-shape-one {
  width: 260px;
  height: 260px;
  left: -90px;
  top: 80px;
  background: rgba(247, 148, 46, 0.10);
}

.problem-bg-shape-two {
  width: 360px;
  height: 360px;
  right: -140px;
  bottom: -110px;
  background: rgba(34, 57, 85, 0.08);
}

.problem-card {
  height: 100%;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--asd-border);
  box-shadow: 0 18px 50px rgba(34, 57, 85, 0.08);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 57, 85, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 57, 85, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.55;
}

.problem-card::after {
  content: "";
  position: absolute;
  right: -48px;
  top: -48px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
}

.problem-card-orange::after {
  background: rgba(247, 148, 46, 0.16);
}

.problem-card-blue::after {
  background: rgba(34, 57, 85, 0.12);
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(34, 57, 85, 0.14);
}

.problem-visual {
  position: relative;
  z-index: 1;
  width: 86px;
  height: 86px;
  margin-bottom: 20px;
}

.problem-icon {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: var(--asd-orange-soft);
  color: var(--asd-orange);
  font-size: 28px;
  box-shadow: 0 14px 28px rgba(247, 148, 46, 0.18);
}

.problem-pulse {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(247, 148, 46, 0.16);
  animation: problemPulse 2.4s infinite;
}

.problem-card h3,
.problem-card p {
  position: relative;
  z-index: 1;
}

.problem-card h3 {
  font-size: 21px;
  font-weight: 900;
  color: var(--asd-navy);
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--asd-muted);
  margin-bottom: 0;
}

.problem-flow {
  margin: 44px auto 0;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.flow-step {
  min-width: 190px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--asd-border);
  box-shadow: 0 14px 34px rgba(34, 57, 85, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--asd-navy);
  font-weight: 900;
  text-align: center;
}

.flow-step i {
  color: var(--asd-orange);
}

.flow-line {
  flex: 1;
  max-width: 90px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--asd-orange), var(--asd-navy));
  position: relative;
}

.flow-line::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--asd-navy);
  transform: translateY(-50%);
}

.problem-bridge {
  margin-top: 38px;
  padding: 28px 32px;
  border-radius: 28px;
  background:
    radial-gradient(circle at right top, rgba(247, 148, 46, 0.24), transparent 32%),
    linear-gradient(135deg, var(--asd-navy-dark), var(--asd-navy));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 22px 60px rgba(22, 40, 61, 0.18);
}

.problem-bridge span {
  color: var(--asd-orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.problem-bridge h3 {
  margin: 6px 0 0;
  color: #ffffff;
  font-weight: 900;
  font-size: 28px;
}

@keyframes problemPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.80;
  }

  70% {
    transform: scale(1.25);
    opacity: 0;
  }

  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .problem-flow {
    flex-direction: column;
  }

  .flow-line {
    width: 3px;
    height: 38px;
    max-width: none;
  }

  .flow-line::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -3px;
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .problem-bridge {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .problem-bridge h3 {
    font-size: 23px;
  }

  .flow-step {
    width: 100%;
    min-width: auto;
  }
}


/* ==================================================
Used  on index for Impact & Trust
   ================================================== */
.dark-band {
  background:linear-gradient(135deg,var(--asd-navy-dark),var(--asd-navy));
  color:#fff;
  position:relative;
  overflow:hidden
}

.dark-band:before {
  content:"";
  position:absolute;
  inset:auto -100px -180px auto;
  width:420px;
  height:420px;
  background:rgba(247,148,46,.15);
  border-radius:50%
}

.dark-band h2,.dark-band h3 {
  color:#fff
}

.dark-band p,.dark-band li {
  color:#dbe6f2
}

.counter-box {
  text-align:center;
  padding:26px 18px;
  border-radius:24px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  height:100%
}

.counter-box .counter {
  font-size:38px;
  font-weight:900;
  color:#fff
}

.counter-box span {
  color:#ffbd75;
  font-weight:800
}


/*Products Page*/
.product-card {
  overflow:hidden;
  border-radius:30px;
  background:#fff;
  border:1px solid var(--asd-border);
  box-shadow:0 18px 55px rgba(27,43,66,.08);
  height:100%;
  transition:.3s
}

.product-card:hover {
  transform:translateY(-8px)
}

/* Product image top area */
.product-thumb {
  height: 250px;
  background: radial-gradient(circle at 80% 18%, rgba(247, 148, 46, 0.38), transparent 28%), linear-gradient(135deg, var(--asd-navy), #dee2e6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.product-thumb:after {
  content: "";
  position: absolute;
  right: -45px;
  top: -45px;
  width: 140px;
  height: 140px;
  background: rgba(247, 148, 46, 0.35);
  border-radius: 50%;
  z-index: 1;
}

.product-img-wrap {
  width: 100%;
  height: 100%;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.product-img-wrap img {
  max-width: 100%;
  max-height: 160px;
  object-fit: contain;
  transition: 0.35s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.07);
}

.product-card .p-4 {
  min-height:210px
}

/* Responsive adjustment */
@media (max-width: 767px) {
  .product-thumb {
    height: 190px;
    padding: 20px;
  }

  .product-img-wrap {
    max-width: 210px;
    border-radius: 20px;
  }

  .product-img-wrap img {
    max-height: 140px;
  }

 .product-card .p-4 {
    min-height: auto;  
}
}






/*Downloads Patch*/
    .downloads-section {
        position: relative;
        padding: 85px 0;
        background:
          radial-gradient(circle at 8% 15%, rgba(246, 162, 26, 0.12), transparent 28%),
          radial-gradient(circle at 92% 20%, rgba(15, 53, 87, 0.10), transparent 30%),
          #f7f9fc;
        overflow: hidden;
      }

      .downloads-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(15, 53, 87, 0.035) 1px, transparent 1px),
          linear-gradient(90deg, rgba(15, 53, 87, 0.035) 1px, transparent 1px);
        background-size: 36px 36px;
        pointer-events: none;
      }

      .downloads-title {
        position: relative;
        text-align: center;
        margin-bottom: 45px;
        z-index: 1;
      }

      .downloads-title .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #f6a21a;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 8px;
      }

      .downloads-title h2 {
        font-size: 38px;
        font-weight: 800;
        color: #0f3557;
        margin-bottom: 10px;
      }

      .downloads-title p {
        max-width: 760px;
        margin: 0 auto;
        color: #667085;
      }

      .download-card {
        position: relative;
        display: block;
        height: 100%;
        min-height: 300px;
        padding: 34px 28px;
        overflow: hidden;
        text-align: center;
        text-decoration: none;
        background: #ffffff;
        border: 1px solid rgba(15, 53, 87, 0.16);
        border-radius: 24px;
        box-shadow: 0 18px 45px rgba(15, 53, 87, 0.12);
        transition: all 0.35s ease;
        z-index: 1;
      }

      .download-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 26px 65px rgba(15, 53, 87, 0.22);
        border-color: rgba(246, 162, 26, 0.75);
      }

      .download-icon {
        width: 86px;
        height: 86px;
        margin: 0 auto 24px;
        border-radius: 50%;
        background: linear-gradient(145deg, #0f3557, #213652);
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 34px;
        box-shadow: 0 14px 30px rgba(15, 53, 87, 0.25);
      }

      .download-card h3 {
        color: #0f3557;
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 10px;
      }

      .download-card p {
        color: #667085;
        margin-bottom: 22px;
      }

      .download-btn-text {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 10px 20px;
        border-radius: 50px;
        background: #ffb35b;
        color: #0f3557;
        font-weight: 900;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 0.4px;
        margin-top: 30px;
      }

      .download-overlay {
        position: absolute;
        inset: 0;
        z-index: 2;
        padding: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 179, 91, 0.90);
        opacity: 0;
        transform: scale(0.92);
        transition: all 0.35s ease;
      }

      .download-card:hover .download-overlay {
        opacity: 1;
        transform: scale(1);
      }

      .download-overlay-content {
        width: 100%;
        padding: 28px 20px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.55);
        background: rgba(255, 255, 255, 0.18);
        backdrop-filter: blur(4px);
      }

      .download-overlay-content i {
        font-size: 38px;
        color: #0f3557;
        margin-bottom: 14px;
      }

      .download-overlay-content h4 {
        font-size: 18px;
        font-weight: 900;
        color: #0f3557;
        margin-bottom: 8px;
      }

      .download-overlay-content span {
        display: block;
        color: #0f3557;
        font-weight: 700;
      }

      @media (max-width: 991px) {
        .downloads-title h2 {
          font-size: 30px;
        }

        .download-card {
          min-height: 280px;
        }
      }

      @media (max-width: 575px) {
        .downloads-section {
          padding: 55px 0;
        }

        .download-card {
          min-height: 260px;
          padding: 28px 22px;
        }

        .download-icon {
          width: 74px;
          height: 74px;
          font-size: 28px;
        }
      }

/* ==========================================
VIDEO GALLERY SECTION
========================================== */

.video-gallery-section {
  padding: 80px 0;
  background: #f7f9fc;
}

.video-gallery-title {
  text-align: center;
  margin-bottom: 45px;
}

.video-gallery-title .eyebrow {
  color: var(--asd-orange, #f6a21a);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.video-gallery-title h2 {
  font-size: 38px;
  font-weight: 800;
  color: #0f3557;
}

.video-gallery-title p {
  max-width: 720px;
  margin: 12px auto 0;
  color: #667085;
}

.video-card {
  height: 100%;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 53, 87, 0.15);
  box-shadow: 0 18px 45px rgba(15, 53, 87, 0.12);
  cursor: pointer;
  transition: all 0.35s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 65px rgba(15, 53, 87, 0.22);
}

.video-thumb {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.08);
}

.video-hover-layer {
  position: absolute;
  inset: 0;
  background: rgba(246, 162, 26, 0.86);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 25px;
  opacity: 0;
  transition: all 0.35s ease;
}

.video-card:hover .video-hover-layer {
  opacity: 1;
}

.video-hover-layer h4 {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.video-hover-layer p {
  margin: 0;
  font-weight: 500;
}

.play-icon {
  position: absolute;
  left: 50%;
  top: 70%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(15, 53, 87, 0.95);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.35s ease;
  z-index: 2;
}

.video-card:hover .play-icon {
  background: #ffffff;
  color: #0f3557;
}

.video-content {
  padding: 24px;
}

.video-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0f3557;
  margin-bottom: 10px;
}

.video-content p {
  color: #667085;
  margin-bottom: 14px;
}

.video-content span {
  color: var(--asd-orange, #f6a21a);
  font-weight: 800;
}

.video-content span i {
  margin-right: 7px;
}

.video-modal-content {
  border: none;
  border-radius: 22px;
  overflow: hidden;
}

.video-modal-content .modal-header {
  background: #0f3557;
  color: #ffffff;
  border-bottom: none;
}

.video-modal-content .btn-close {
  filter: invert(1);
}

#videoFrame {
  border: none;
}

@media (max-width: 991px) {
  .video-gallery-title h2 {
    font-size: 30px;
  }

  .video-thumb {
    height: 230px;
  }
}

@media (max-width: 575px) {
  .video-gallery-section {
    padding: 55px 0;
  }

  .video-thumb {
    height: 215px;
  }

  .video-content {
    padding: 20px;
  }
}

/* Directors Section */

.directors-section .reveal {
  display: flex;
}

.team-card {
  width: 100%;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--asd-border, #dde5ee);
  box-shadow: 0 14px 38px rgba(27, 43, 66, 0.09);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(27, 43, 66, 0.14);
}

.team-img {
  height: 260px;
  background: #f3f6fa;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: all 0.4s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-content {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-card h3 {
  color: var(--asd-navy, #0f3557);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
  margin-bottom: 8px;
}

.team-role {
  display: block;
  color: var(--asd-orange, #f6a21a);
  font-weight: 900;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 12px;
  min-height: 20px;
}

.team-excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: #5f6f83;
  margin-bottom: 18px;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.team-read-more {
  margin-top: auto;
  align-self: flex-start;
  border: none;
  outline: none;
  background: linear-gradient(135deg, var(--asd-orange, #f6a21a), #ffb733);
  
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 9px 18px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.team-read-more:hover {
  background: linear-gradient(135deg, var(--asd-navy, #0f3557), #173f67);
  color: #fff;
  letter-spacing: 1px;
  transform: translateY(-2px);
}

.team-img img.aparna-img {
  object-fit: cover;
  object-position: center 10%;
}


/* Director Popup */

.director-modal .modal-content {
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(15, 53, 87, 0.35);
  background: #fff;
  position: relative;
  animation: directorPopupZoom 0.35s ease;

}

@keyframes directorPopupZoom {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.director-modal .modal-body {
  padding: 28px;
  border: 1px solid rgba(15, 53, 87, 0.12);
  background:
    radial-gradient(circle at top right, rgba(246, 162, 26, 0.12), transparent 35%),
    linear-gradient(135deg, #ffffff, #f7faff);
}

.director-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.director-popup-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: flex-start;
}

.director-popup-photo {
  border-radius: 22px;
  overflow: hidden;
  background: #eef3f8;
  box-shadow: 0 16px 38px rgba(15, 53, 87, 0.16);
}

.director-popup-photo img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.director-popup-content h3 {
  color: var(--asd-navy, #0f3557);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
  padding-right: 35px;
}

.director-popup-content span {
  display: inline-block;
  color: var(--asd-orange, #f6a21a);
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 16px;
}

.director-popup-content p {
  color: #52647a;
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 0;
  text-align: justify;
}


/* Tablet: 2 cards per row handled by col-md-6 */
/* Mobile: 1 card per row handled by col-12 */

@media (max-width: 991px) {
  .team-img {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .team-card {
    border-radius: 20px;
  }

  .team-img {
    height: 300px;
  }

  .director-modal .modal-body {
    padding: 18px;
  }

  .director-modal .modal-dialog {
    margin-top: 95px;
  }

  .director-modal .modal-content {
    position: relative;
  }

  .director-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background-color: #ffffff;
    opacity: 1;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  }

  .director-popup-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .director-popup-photo img {
    height: 300px;
  }

  .director-popup-content h3 {
    font-size: 23px;
  }

  .director-popup-content p {
    text-align: left;
  }
}


/* ==================================================
Used as title for every Page
   ================================================== */
.page-header {
  padding:35px 0 25px;
  background:linear-gradient(135deg,var(--asd-navy-dark),var(--asd-navy));
  color:#fff;
  position:relative;
  overflow:hidden
}

.page-header:after {
  content:"";
  position:absolute;
  right:-110px;
  top:-110px;
  width:340px;
  height:340px;
  border-radius:50%;
  background:rgba(247,148,46,.22)
}

.page-header h1 {
  font-weight:900;
  font-size:clamp(36px,5vw,58px)
}

.breadcrumb-custom {
  color:#ffbd75;
  font-weight:700
}

  /* ==========================================
  PRODUCT PAGES
  ========================================== */
  .product-detail-section {
    position: relative;
    padding: 80px 0 55px;
    background:
      radial-gradient(circle at 8% 18%, rgba(246, 162, 26, 0.13), transparent 28%),
      linear-gradient(135deg, #f8fbff 0%, #ffffff 48%, #eef4fb 100%);
    overflow: hidden;
  }

  .product-detail-section::before {
    content: "";
    position: absolute;
    left: -120px;
    top: 70px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(15, 53, 87, 0.06);
  }

  .product-detail-card {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(15, 53, 87, 0.12);
    box-shadow: 0 22px 60px rgba(15, 53, 87, 0.13);
    padding: 28px;
  }

  .product-zoom-box {
    position: relative;
    height: 100%;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    overflow: hidden;
    background:
      radial-gradient(circle at center, rgba(246, 162, 26, 0.12), transparent 38%),
      linear-gradient(145deg, #ffffff, #eef4fb);
    border: 1px solid rgba(15, 53, 87, 0.13);
    cursor: zoom-in;
  }

  .product-zoom-box img {
    max-width: 92%;
    max-height: 390px;
    object-fit: contain;
    transition: transform 0.45s ease;
    transform-origin: center center;
    filter: drop-shadow(0 25px 35px rgba(15, 53, 87, 0.22));
  }

  .product-zoom-box:hover img {
    transform: scale(1.05);
  }

  .product-zoom-box.zoom-active {
    cursor: zoom-out;
  }

  .product-zoom-box.zoom-active img {
    transform: scale(1.9);
  }

  .product-zoom-box.zoom-active:hover img {
    transform: scale(1.9);
  }

  .product-zoom-box.zoom-active .zoom-hint {
    background: rgba(246, 162, 26, 0.94);
    color: #0f3557;
  }

  .product-zoom-box.zoom-active .zoom-hint i {
    color: #0f3557;
  }

  .zoom-hint {
    position: absolute;
    left: 22px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 53, 87, 0.90);
    color: #ffffff;
    border-radius: 50px;
    padding: 9px 15px;
    font-size: 14px;
    font-weight: 700;
    z-index: 3;
    pointer-events: none;
  }

  .zoom-hint i {
    color: var(--asd-orange, #f6a21a);
  }

  .product-info-content {
    padding: 10px 8px 10px 24px;
  }

  .product-info-content .eyebrow {
    color: var(--asd-orange, #f6a21a);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .product-info-content h2 {
    font-size: 40px;
    line-height: 1.15;
    font-weight: 850;
    color: #0f3557;
    margin-bottom: 14px;
  }

  .product-info-content h2 span {
    color: var(--asd-orange, #f6a21a);
  }

  .product-intro {
    color: #667085;
    font-size: 16px;
    margin-bottom: 26px;
  }

  .product-feature-block {
    display: flex;
    gap: 18px;
    padding: 19px 0;
    border-bottom: 1px solid rgba(15, 53, 87, 0.10);
  }

  .product-feature-block:last-child {
    border-bottom: none;
  }

  .product-feature-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(246, 162, 26, 0.12);
    color: var(--asd-orange, #f6a21a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid rgba(246, 162, 26, 0.35);
  }

  .product-feature-text h3 {
    font-size: 21px;
    font-weight: 800;
    color: #0f3557;
    margin-bottom: 6px;
  }

  .product-feature-text p {
    color: #667085;
    margin-bottom: 0;
    line-height: 1.7;
  }

  .electronic-hr {
    position: relative;
    height: 2px;
    margin: 55px 0 36px;
    background: linear-gradient(90deg, transparent, rgba(246, 162, 26, 0.95), transparent);
    box-shadow: 0 0 18px rgba(246, 162, 26, 0.65);
  }

  .electronic-hr::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    transform: translate(-50%, -50%) rotate(45deg);
    background: var(--asd-orange, #f6a21a);
    box-shadow: 0 0 20px rgba(246, 162, 26, 0.9);
  }

  .other-products-title {
    text-align: center;
    margin-bottom: 30px;
  }

  .other-products-title .eyebrow {
    color: var(--asd-orange, #f6a21a);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .other-products-title h2 {
    color: #0f3557;
    font-size: 32px;
    font-weight: 850;
    margin: 6px 0 8px;
  }

  .other-product-card {
    position: relative;
    height: 235px;
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15, 53, 87, 0.15);
    box-shadow: 0 16px 40px rgba(15, 53, 87, 0.12);
  }

  .other-product-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
    transition: all 0.45s ease;
    background: linear-gradient(145deg, #ffffff, #eef4fb);
  }

  .other-product-card:hover img {
    transform: scale(1.08);
  }

  .other-product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(246, 162, 26, 0.86);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 22px;
    opacity: 0;
    transition: all 0.35s ease;
  }

  .other-product-card:hover .other-product-overlay {
    opacity: 1;
  }

  .other-product-overlay h3 {
    color: #ffffff;
    font-size: 21px;
    font-weight: 850;
    margin: 0;
  }

  @media (max-width: 991px) {
    .product-detail-section {
      padding: 60px 0 45px;
    }

    .product-info-content {
      padding: 2px 4px 4px;
    }

    .product-info-content h2 {
      font-size: 32px;
    }

    .product-zoom-box {
      min-height: 360px;
    }
  }

  @media (max-width: 575px) {
    .product-detail-card {
      padding: 18px;
      border-radius: 22px;
    }

    .product-zoom-box {
      min-height: 290px;
    }

    .product-zoom-box img {
      max-height: 260px;
    }

    .product-info-content h2 {
      font-size: 28px;
    }

    .product-feature-block {
      gap: 14px;
    }

    .product-feature-icon {
      flex-basis: 48px;
      width: 48px;
      height: 48px;
      font-size: 20px;
    }

    .other-product-card {
      height: 215px;
    }
  }


/* ==================================================
Used for Certificates
   ================================================== */

.cert-card {
  cursor: pointer;
  background:#fff;
  border:1px solid var(--asd-border);
  border-radius:26px;
  padding:14px;
  box-shadow:0 18px 50px rgba(34,57,85,.08);
  height:100%;
  cursor:pointer;
  transition:.3s
}

.cert-card:hover {
  transform:translateY(-6px)
}

.cert-card img {
  width:100%;
  height:260px;
  object-fit:contain;
  background:#f9fbfd;
  border-radius:18px
}

.cert-card h3 {
  font-size:18px;
  color:var(--asd-navy);
  font-weight:900;
  margin:15px 8px 5px
}

.cert-card p {
  margin:0 8px 10px;
  color:var(--asd-muted);
  font-size:14px
}

.modal-cert-img {
  width:100%;
  height:auto
}

.contact-box {
  padding:20px;
  border-radius:28px;
  background:#fff;
  box-shadow:0 18px 55px rgba(27,43,66,.08);
  border:1px solid var(--asd-border);
  height:100%
}

.contact-box i {
  color:#f68c34;
  font-size:28px;
  margin-bottom:15px
}

/* ==================================================
Used for Contact
   ================================================== */

/* Social Contact Box */
.contact-social-box {
  min-height: 100%;
  padding: 38px 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(246, 178, 26, 0.24), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(135deg, #0f3557 0%, #173f67 45%, #0a2943 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 55px rgba(15,53,87,0.22);
  color: #fff;
  isolation: isolate;
}

.social-box-content {
  z-index: 2;
}

.social-tagline {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 50px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffd36a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.social-title {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.social-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  max-width: 95%;
  margin-bottom: 24px;
}

.social-contact-mini {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.mini-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
}

.mini-contact-item i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.10);
  color: #ffd36a;
  flex-shrink: 0;
}

.mini-contact-item a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
  word-break: break-word;
}

.mini-contact-item a:hover {
  color: #ffd36a;
}

.social-links-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 700;
  transition: all 0.3s ease;
  backdrop-filter: blur(3px);
}

.social-link i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.social-link span {
  font-size: 14px;
  line-height: 1.3;
}

.social-link:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  box-shadow: 0 14px 24px rgba(0,0,0,0.16);
}

/* Slight highlight accents */
.social-link.whatsapp i { color: #25D366; }
.social-link.facebook i { color: #8cbcff; }
.social-link.instagram i { color: #ffb3d4; }
.social-link.linkedin i { color: #8fd1ff; }
.social-link.youtube i { color: #ff9c9c; }

.btn-whatsapp-connect {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2f485a, #173e62);
  color: #fff;
  text-decoration: none;
  border: none;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.28);
  transition: all 0.3s ease;
}

.btn-whatsapp-connect:hover {
  transform: translateY(-3px);
  color: #1fee52;
  box-shadow: 0 18px 32px rgba(37, 211, 102, 0.35);
}

/* Decorative background icons */
.bg-power-icon {
  position: absolute;
  z-index: 1;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
  line-height: 1;
}

.bg-power-icon i {
  display: block;
}

.icon-one {
  top: 18px;
  right: 20px;
  font-size: 100px;
  transform: rotate(-10deg);
}

.icon-two {
  bottom: 24px;
  left: 18px;
  font-size: 82px;
  transform: rotate(8deg);
}

.icon-three {
  top: 45%;
  right: 12%;
  font-size: 70px;
  transform: rotate(10deg);
}

/* Responsive */
@media (max-width: 991px) {
  .contact-social-box {
    padding: 30px 24px;
  }

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

@media (max-width: 575px) {
  .social-links-wrap {
    grid-template-columns: 1fr;
  }

  .social-title {
    font-size: 24px;
  }

  .social-text {
    max-width: 100%;
  }

  .contact-social-box {
    padding: 26px 18px;
    border-radius: 22px;
  }

  .social-link {
    padding: 12px 14px;
  }

  .social-link i {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .btn-whatsapp-connect {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ==========================================
EXPORT MINI STRIP - HOME PAGE
========================================== */

.export-mini-strip {
  padding: 45px 0 55px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
}

.export-mini-box {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 28px 30px;
  background:
    linear-gradient(135deg, rgba(255, 248, 236, 0.98), rgba(239, 247, 255, 0.98));
  border: 1px solid rgba(15, 53, 87, 0.12);
  box-shadow: 0 18px 45px rgba(15, 53, 87, 0.10);
  display: grid;
  grid-template-columns: 1.45fr 1fr auto;
  gap: 24px;
  align-items: center;
}

.export-mini-box::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -90px;
  background: rgba(247, 148, 46, 0.18);
  border-radius: 50%;
  animation: exportSoftPulse 4s ease-in-out infinite;
}

.export-mini-box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35%;
  height: 4px;
  background: linear-gradient(90deg, var(--asd-orange), var(--asd-navy));
  animation: exportLineMove 4s ease-in-out infinite;
}

.export-mini-left {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.export-mini-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 18px;
  background: var(--asd-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 12px 28px rgba(15, 53, 87, 0.22);
}

.export-mini-label {
  display: inline-block;
  color: var(--asd-orange);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.export-mini-box h3 {
  color: var(--asd-navy);
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 8px;
}

.export-mini-box p {
  color: #4c5d6c;
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 0;
}

.export-mini-services {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.export-mini-services span {
  padding: 8px 13px;
  border-radius: 50px;
  background: #ffffff;
  color: var(--asd-navy);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(15, 53, 87, 0.10);
  box-shadow: 0 8px 18px rgba(15, 53, 87, 0.06);
  animation: exportChipFloat 3.5s ease-in-out infinite;
}

.export-mini-services span:nth-child(2) {
  animation-delay: 0.4s;
}

.export-mini-services span:nth-child(3) {
  animation-delay: 0.8s;
}

.export-mini-services span:nth-child(4) {
  animation-delay: 1.2s;
}

.export-mini-action {
  position: relative;
  z-index: 2;
  text-align: right;
}

.export-mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 50px;
  background: var(--asd-navy);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  transition: 0.3s ease;
  box-shadow: 0 12px 28px rgba(15, 53, 87, 0.22);
}

.export-mini-btn:hover {
  background: var(--asd-orange);
  color: #ffffff;
  transform: translateY(-3px);
}

@keyframes exportChipFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes exportSoftPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.65;
  }

  50% {
    transform: scale(1.12);
    opacity: 0.95;
  }
}

@keyframes exportLineMove {
  0%, 100% {
    width: 28%;
  }

  50% {
    width: 55%;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .export-mini-box {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .export-mini-action {
    text-align: left;
  }
}

@media (max-width: 575px) {
  .export-mini-strip {
    padding: 35px 0 45px;
  }

  .export-mini-box {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .export-mini-left {
    flex-direction: column;
  }

  .export-mini-box h3 {
    font-size: 22px;
  }

  .export-mini-box p {
    font-size: 14.5px;
  }

  .export-mini-services span {
    width: 100%;
  }

  .export-mini-btn {
    width: 100%;
  }
}


/* ==================================================
Used for Footer
   ================================================== */
.footer {
  background:#101e2d;
  color:#c9d6e2;
  padding:60px 0 25px
}

.footer h4 {
  color:#fff;
  font-weight:900
}

.footer a {
  color:#c9d6e2
}

.footer a:hover {
  color:var(--asd-orange)
}

.footer-logo {
  background:#fff;   /*f6a21a;*/
  border-radius:18px;
  padding:10px;
  max-width:150px
}


.reveal {
  opacity:0;
  transform:translateY(24px);
  transition:all .75s ease
}

.reveal.active {
  opacity:1;
  transform:none
}

.floating-help {
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:999
}

.floating-help a {
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  background:#fff;
  color:var(--asd-orange);
  border-radius:50%;
  box-shadow:0 18px 30px rgba(247,148,46,.35)
}

.floating-help :hover{
  background:var(--asd-orange);
  color:#fff;
  border:1px solid #101e2d;
}



/* Copyright strip mobile font adjustment */
.copyright-strip {
  padding: 8px 12px;
}

.copyright-strip p,
.copyright-strip div,
.copyright-strip a {
  font-size: 14px;
  line-height: 1.6;
}

/* Tablets and mobiles */
@media (max-width: 767px) {
  .copyright-strip {
    text-align: center;
    padding: 10px 14px;
  }

  .copyright-strip p,
  .copyright-strip div,
  .copyright-strip a {
    font-size: 13px;
    line-height: 1.6;
  }

  .copyright-strip p {
    margin-bottom: 4px;
  }

  .copyright-strip .col-lg-6,
  .copyright-strip .col-md-6,
  .copyright-strip .col-sm-6 {
    text-align: center !important;
  }
}

/* Small mobile phones */
@media (max-width: 480px) {
  .copyright-strip p,
  .copyright-strip div,
  .copyright-strip a {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* Very small mobile phones */
@media (max-width: 360px) {
  .copyright-strip p,
  .copyright-strip div,
  .copyright-strip a {
    font-size: 11px;
  }
}



@media (max-width:991px) {
  .hero {
    padding-top:65px;
    min-height:auto
  }

  .hero-card {
    margin-top:35px
    border-radius:40%;
  }

  .team-img {
    height:330px
  }

  .section {
    padding:30px 0
  }

  .navbar-brand img {
    max-height:48px
  }

  .footer-logo {max-width: 150px;}

}

@media (max-width:575px) {
  .top-bar {
    font-size:12px
  }

  .hero h1 {
    font-size:36px
  }

  .cert-card img {
    height:210px
  }

  .team-img {
    height:310px
  }

  .mini-stat {
    margin-bottom:12px
  }

 .footer-logo {max-width: 120px;}

}

/* ==================================================
Used for Social Media Icons
   ================================================== */
.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

/* Original brand colors */
.footer-social a.facebook {
  background: #1877f2;
}

.footer-social a.youtube {
  background: #ff0000;
}

.footer-social a.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.footer-social a.linkedin {
  background: #0a66c2;
}

/* Hover effect */
.footer-social a:hover {
  transform: scale(1.18) translateY(-4px);
  color: #ffffff;
}

/* Hover brand colors with stronger effect */
.footer-social a.facebook:hover {
  background: #0b5ed7;
  box-shadow: 0 12px 28px rgba(24, 119, 242, 0.45);
}

.footer-social a.youtube:hover {
  background: #cc0000;
  box-shadow: 0 12px 28px rgba(255, 0, 0, 0.45);
}

.footer-social a.instagram:hover {
  background: linear-gradient(135deg, #ffb347, #ff416c, #833ab4, #405de6);
  box-shadow: 0 12px 28px rgba(221, 42, 123, 0.45);
}

.footer-social a.linkedin:hover {
  background: #004182;
  box-shadow: 0 12px 28px rgba(10, 102, 194, 0.45);
}



/*only white colored*/
/*.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 18px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.35s ease;
}

.footer-social a:hover {
  background: #f6b21a;
  color: #0f3557;
  border-color: #f6b21a;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(246, 178, 26, 0.35);
}*/




/* ==========================================
GLOBAL MODAL FIX
Photo Gallery, Video Gallery, Director Modal, Certificate
========================================== */

.modal-backdrop {
  z-index: 1050 !important;
}

.modal {
  z-index: 1060 !important;
}

.modal-dialog {
  position: relative;
  z-index: 1070 !important;
}

.modal-content {
  position: relative;
  z-index: 1071 !important;
}

.modal .btn-close,
.modal .close,
.director-close {
  z-index: 1080 !important;
}

/*Photo Gallery - to change arrow colors*/

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(62%) sepia(88%) saturate(742%) hue-rotate(355deg) brightness(98%) contrast(95%);
}