/* --- start navbar area Css --- */

.deled-nav-area-code {
  width: 100%;
  background: linear-gradient(
    135deg,
    #064e3b 0%,
    #047857 50%,
    #10b981 100%
  ) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 0;
  z-index: 1030;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}

.deled-nav-area-code .nd-navbar {
  width: 100%;
  padding: 10px 0;
}

.deled-nav-area-code .nd-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Brand Logo */
.deled-nav-area-code .nd-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.deled-nav-area-code .nd-logo {
  max-height: 45px;
  width: auto;
  object-fit: contain;
}

/* Toggler Button */
.deled-nav-area-code .nd-toggler {
  background: transparent;
  border: none;
  padding: 5px;
  cursor: pointer;
}

.deled-nav-area-code .nd-burger-icon {
  width: 25px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.deled-nav-area-code .nd-burger-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
}

/* Nav Menu Structure */
.deled-nav-area-code .nd-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  width: 100%;
}

.deled-nav-area-code .nd-nav-item {
  position: relative;
}

/* Links Design */
.deled-nav-area-code .nd-nav-link {
  display: inline-block;
  padding: 8px 12px;
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  border-radius: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.deled-nav-area-code .nd-nav-link:hover,
.deled-nav-area-code .nd-nav-link.nd-active {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.18);
}

/* Dropdown Arrow */
.deled-nav-area-code .nd-dropdown-toggle::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
  border-top: 4px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

/* Highlight Badge Link */
.deled-nav-area-code .nd-badge-link {
  color: #ffffff !important;
  background-color: #059669;
  border: 1px solid #34d399;
}

.deled-nav-area-code .nd-badge-link:hover {
  background-color: #047857;
}

/* Contact Button */
.deled-nav-area-code .nd-btn-contact {
  display: inline-block;
  padding: 8px 18px;
  background-color: #ffffff;
  color: #047857 !important;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.deled-nav-area-code .nd-btn-contact:hover {
  background-color: #ecfdf5;
  color: #064e3b !important;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Desktop Dropdown Sub-menu Box */
.deled-nav-area-code .nd-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding: 8px 0;
  margin-top: 5px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 1000;
}

.deled-nav-area-code .nd-dropdown-item {
  display: block;
  padding: 8px 16px;
  color: #064e3b !important;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.deled-nav-area-code .nd-dropdown-item:hover {
  background-color: #ecfdf5;
  color: #047857 !important;
  padding-left: 20px;
}

/* --- DESKTOP DISPLAY RULES --- */

@media (min-width: 992px) {
  .deled-nav-area-code .nd-offcanvas-wrapper {
    display: flex !important;
    position: static !important;
    visibility: visible !important;
    transform: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    width: 100% !important;
    justify-content: center;
  }

  .deled-nav-area-code .nd-offcanvas-body {
    display: flex !important;
    padding: 0 !important;
    overflow: visible !important;
    width: 100%;
    justify-content: center;
  }

  .deled-nav-area-code .nd-has-dropdown:hover .nd-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* --- Medium-to-Large Screens Fix --- */

@media (min-width: 992px) and (max-width: 1280px) {
  .deled-nav-area-code .nd-container {
    max-width: 100% !important;
    padding: 0 10px;
  }

  .deled-nav-area-code .nd-nav-list {
    gap: 0px !important;
  }

  .deled-nav-area-code .nd-nav-link {
    padding: 6px 7px !important;
    font-size: 10px !important;
    letter-spacing: 0px !important;
  }

  .deled-nav-area-code .nd-btn-contact {
    padding: 6px 12px !important;
    font-size: 10px !important;
  }
}

/* --- MOBILE & TABLET RULES --- */

@media (max-width: 991px) {
  .deled-nav-area-code .nd-container {
    justify-content: space-between;
  }

  .deled-nav-area-code .nd-offcanvas-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 280px;
    background-color: #064e3b;
    z-index: 10000;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.3);
  }

  .deled-nav-area-code .nd-offcanvas-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
  }

  .deled-nav-area-code .nd-offcanvas-header .btn-close {
    filter: invert(1);
  }

  .deled-nav-area-code .nd-offcanvas-body {
    padding: 20px;
    overflow-y: auto;
  }

  .deled-nav-area-code .nd-nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
  }

  .deled-nav-area-code .nd-nav-item {
    width: 100%;
  }

  .deled-nav-area-code .nd-nav-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px;
  }

  /* ==============================
     MOBILE DROPDOWN
  ============================== */

  .deled-nav-area-code .nd-dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;

    width: 100%;
    min-width: 100%;

    box-shadow: none !important;

    background-color: #065f46;

    border-left: 2px solid #10b981;
    border-radius: 0 6px 6px 0;

    margin: 5px 0 10px 10px;
    padding: 5px 0;

    /* Default hidden */
    display: none !important;
  }

  /* Dropdown Open */

  .deled-nav-area-code .nd-has-dropdown.active > .nd-dropdown-menu,
  .deled-nav-area-code .nd-has-dropdown.show > .nd-dropdown-menu {
    display: block !important;
  }

  /* Dropdown Text */

  .deled-nav-area-code .nd-dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 16px;

    color: #ffffff !important;
    opacity: 0.9;

    background: transparent;
    text-decoration: none;
  }

  .deled-nav-area-code .nd-dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    opacity: 1;
  }

  /* Dropdown Parent */

  .deled-nav-area-code .nd-has-dropdown > .nd-dropdown-toggle {
    cursor: pointer;
  }

  /* Dropdown Arrow */

  .deled-nav-area-code .nd-has-dropdown > .nd-dropdown-toggle::after {
    transition: transform 0.25s ease;
  }

  /* Arrow Rotate */

  .deled-nav-area-code .nd-has-dropdown.active > .nd-dropdown-toggle::after,
  .deled-nav-area-code .nd-has-dropdown.show > .nd-dropdown-toggle::after {
    transform: rotate(180deg);
  }

  /* Contact Button */

  .deled-nav-area-code .nd-btn-contact {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}

/* top header */
.new-deled-area-update {
  background: linear-gradient(135deg, #064e3b 0%, #047857 50%, #10b981 100%);

  padding: 10px 0;

  color: #ffffff;
}

/* Left Area */

.new-deled-area-update .top-header-new-left .top-header-new-list {
  list-style: none;

  padding: 0;

  margin: 0;

  display: flex;

  align-items: center;

  gap: 25px;
}

.new-deled-area-update .top-header-new-title a {
  color: #f8fafc;

  font-size: 13px;

  font-weight: 500;

  text-decoration: none;

  transition: 0.3s;
}

.new-deled-area-update .top-header-new-title a:hover {
  color: #6ee7b7;
}

/* Social Icons */

.new-deled-area-update .top-header-new-social {
  display: flex;

  align-items: center;

  gap: 12px;
}

.new-deled-area-update .top-header-new-social a {
  height: 32px;

  width: 32px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(255, 255, 255, 0.12);

  color: #fff;

  font-size: 18px;

  transition: 0.3s ease;
}

.new-deled-area-update .top-header-new-whatsapp:hover {
  background: #25d366;

  transform: translateY(-3px);
}

.new-deled-area-update .top-header-new-facebook:hover {
  background: #1877f2;

  transform: translateY(-3px);
}

.new-deled-area-update .top-header-new-instagram:hover {
  background: #e1306c;

  transform: translateY(-3px);
}

/* Right Contact Area */

.new-deled-area-update .top-header-new-right {
  text-align: right;
}

.new-deled-area-update .top-header-new-contact-list {
  list-style: none;

  padding: 0;

  margin: 0;

  display: flex;

  justify-content: flex-end;

  align-items: center;

  gap: 30px;
}

.new-deled-area-update .top-header-new-contact-list li a {
  color: #ffffff;

  text-decoration: none;

  display: flex;

  align-items: center;

  gap: 8px;

  font-size: 13px;

  font-weight: 500;

  transition: 0.3s;
}

.new-deled-area-update .top-header-new-contact-list li a i {
  font-size: 18px;

  color: #6ee7b7;
}

.new-deled-area-update .top-header-new-contact-list li a:hover {
  color: #6ee7b7;
}

/* Responsive */

@media (max-width: 991px) {
  .new-deled-area-update .top-header-new-left .top-header-new-list,
  .new-deled-area-update .top-header-new-contact-list {
    justify-content: center;

    flex-wrap: wrap;
  }

  .new-deled-area-update .top-header-new-right {
    text-align: center;

    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .new-deled-area-update .top-header-new-title a {
    font-size: 12px;

    text-align: center;
  }

  .new-deled-area-update .top-header-new-contact-list {
    gap: 15px;
  }

  .new-deled-area-update .top-header-new-contact-list li a {
    font-size: 12px;
  }
}

.itep-tab-area-updates .title-linee {
  width: 80px;
  height: 4px;
  background: #047857;
  margin: 0 auto 35px;
  border-radius: 10px;
}

/* footer css deled */

.deled-footer-area-update {
  background: linear-gradient(135deg, #064e3b, #047857, #10b981);
  padding: 40px 0 25px;
  position: relative;
  overflow: hidden;
}

/* Background Effect */

.deled-footer-area-update::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  top: -120px;
  right: -120px;
}

.deled-footer-area-update::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  bottom: -100px;
  left: -80px;
}

.deled-footer-area-update .container {
  position: relative;
  z-index: 2;
}

/*==================================
Logo
==================================*/

.deled-footer-area-update .brkm-footer-logo-box {
  text-align: left;
}

.deled-footer-area-update .brkm-footer-logo {
  width: 180px;
  margin-bottom: 10px;
}

/*==================================
Social Icons
==================================*/

.deled-footer-area-update .brkm-social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.deled-footer-area-update .brkm-social {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  transition: 0.45s;
}

.deled-footer-area-update .brkm-social:nth-child(2) {
  animation-delay: 0.3s;
}

.deled-footer-area-update .brkm-social:nth-child(3) {
  animation-delay: 0.6s;
}

.deled-footer-area-update .brkm-social:nth-child(4) {
  animation-delay: 0.9s;
}

/* Hover */

.deled-footer-area-update .brkm-social:hover {
  transform: translateY(-10px) rotate(360deg);
  background: #fff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.deled-footer-area-update .facebook:hover {
  color: #1877f2;
}

.deled-footer-area-update .instagram:hover {
  color: #e1306c;
}

.deled-footer-area-update .whatsapp:hover {
  color: #25d366;
}

.deled-footer-area-update .youtube:hover {
  color: #ff0000;
}

/* Floating Animation */

@keyframes deledFooterFloat {
  0% {
    transform: translateY(0);
  }

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

  100% {
    transform: translateY(0);
  }
}

/*==================================
Heading
==================================*/

.deled-footer-area-update .brkm-footer-heading {
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.deled-footer-area-update .brkm-footer-heading::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 3px;
  left: 0;
  bottom: -10px;
  background: #fff;
  border-radius: 20px;
}

/*==================================
Menu
==================================*/

.deled-footer-area-update .brkm-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.deled-footer-area-update .brkm-footer-menu li {
  margin-bottom: 14px;
}

.deled-footer-area-update .brkm-footer-menu li a {
  color: #ecfdf5;
  text-decoration: none;
  font-size: 14px;
  transition: 0.35s;
  display: inline-block;
  position: relative;
}

.deled-footer-area-update .brkm-footer-menu li a::before {
  content: "➜";
  margin-right: 8px;
  transition: 0.3s;
}

.deled-footer-area-update .brkm-footer-menu li a:hover {
  color: #fff;
  transform: translateX(8px);
}

/*==================================
Bottom
==================================*/

.deled-footer-area-update .brkm-footer-copyright {
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
  color: #ecfdf5;
  font-size: 15px;
}

.deled-footer-area-update .brkm-footer-copyright strong {
  color: #fff;
  font-weight: 700;
}

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

/* Laptop */

@media (min-width: 992px) and (max-width: 1200px) {
  .deled-footer-area-update .brkm-footer-heading {
    font-size: 21px;
    white-space: nowrap;
    margin-bottom: 25px;
  }

  .deled-footer-area-update .brkm-footer-menu li a {
    font-size: 13px;
    line-height: 1.5;
  }

  .deled-footer-area-update .brkm-footer-logo {
    width: 160px;
  }

  .deled-footer-area-update .brkm-follow-title {
    font-size: 20px;
  }

  .deled-footer-area-update .brkm-social {
    width: 46px;
    height: 46px;
    font-size: 19px;
  }

  .deled-footer-area-update .brkm-footer-col {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* Tablet */

@media (max-width: 991px) {
  .deled-footer-area-update .brkm-footer-logo-box {
    text-align: center;
    margin-bottom: 40px;
  }

  .deled-footer-area-update .brkm-footer-logo {
    width: 170px;
    margin: auto auto 25px;
    display: block;
  }

  .deled-footer-area-update .brkm-social-links {
    justify-content: center;
  }

  .deled-footer-area-update .brkm-footer-heading {
    text-align: center;
    font-size: 24px;
  }

  .deled-footer-area-update .brkm-footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .deled-footer-area-update .brkm-footer-menu {
    text-align: center;
  }

  .deled-footer-area-update .brkm-footer-menu li a {
    font-size: 15px;
  }
}

/* Mobile */

@media (max-width: 576px) {
  .deled-footer-area-update {
    padding: 55px 0 20px;
  }

  .deled-footer-area-update .brkm-footer-logo {
    width: 145px;
  }

  .deled-footer-area-update .brkm-footer-heading {
    font-size: 22px;
  }

  .deled-footer-area-update .brkm-follow-title {
    font-size: 20px;
  }

  .deled-footer-area-update .brkm-social {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .deled-footer-area-update .brkm-footer-menu li a {
    font-size: 14px;
  }

  .deled-footer-area-update .brkm-footer-copyright {
    font-size: 13px;
    line-height: 1.8;
    padding: 18px 10px 0;
  }
}

/*==================================
Back To Top
==================================*/

.brkm-back-topp {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 26px;

  background: linear-gradient(135deg, #047857, #10b981, #34d399);
  box-shadow: 0 12px 30px rgba(4, 120, 87, 0.35);

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: all 0.4s ease;
}

.brkm-back-topp.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.brkm-back-topp:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 18px 35px rgba(4, 120, 87, 0.45);
}

.brkm-back-topp i {
  transition: 0.3s;
}

.brkm-back-topp:hover i {
  transform: translateY(-3px);
}

/* Pulse Effect */

.brkm-back-topp::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(16, 185, 129, 0.35);
  animation: brkmPulse 2s infinite;
}

@keyframes brkmPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

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

  100% {
    opacity: 0;
  }
}

/* Mobile */

@media (max-width: 576px) {
  .brkm-back-topp {
    width: 50px;
    height: 50px;
    right: 18px;
    bottom: 18px;
    font-size: 22px;
  }
}

/*======================================
    NEW CONTACT SECTION
======================================*/

.deled-contact-area-update {
  padding: 20px 0;
  background: linear-gradient(135deg, #ecfdf5, #f5fffa);
}

.deled-contact-area-update .row {
  align-items: stretch;
}

/*======================================
        LEFT FORM
======================================*/

.deled-contact-area-update .new-contact-updates-form {
  width: 100%;
  background: #ffffff;
  border-radius: 25px;
  padding: 45px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
}

.deled-contact-area-update .new-contact-updates-form:hover {
  transform: translateY(-5px);
}

.deled-contact-area-update .new-contact-updates-tag {
  display: inline-block;
  background: #d1fae5;
  color: #047857;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.deled-contact-area-update .new-contact-updates-form h2 {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.deled-contact-area-update .new-contact-updates-form p {
  color: #666;
  margin-bottom: 35px;
  line-height: 28px;
}

/*======================================
        INPUTS
======================================*/

.deled-contact-area-update .new-contact-updates-group {
  margin-bottom: 22px;
}

.deled-contact-area-update .new-contact-updates-input {
  width: 100%;
  height: 58px;
  border: 1px solid #d1fae5;
  border-radius: 14px;
  padding: 0 20px;
  outline: none;
  background: #f8fffb;
  transition: 0.3s;
  font-size: 15px;
}

.deled-contact-area-update .new-contact-updates-input:focus {
  border-color: #047857;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(4, 120, 87, 0.08);
}

.deled-contact-area-update .new-contact-updates-textarea {
  width: 100%;
  height: 180px;
  border: 1px solid #d1fae5;
  border-radius: 14px;
  padding: 18px;
  resize: none;
  outline: none;
  background: #f8fffb;
  transition: 0.3s;
  font-size: 15px;
}

.deled-contact-area-update .new-contact-updates-textarea:focus {
  border-color: #047857;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(4, 120, 87, 0.08);
}

/*======================================
        BUTTON
======================================*/

.deled-contact-area-update .new-contact-updates-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: linear-gradient(135deg, #047857, #10b981);
  color: #fff;
  padding: 15px 38px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.35s;
}

.deled-contact-area-update .new-contact-updates-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(4, 120, 87, 0.25);
}

/*======================================
        RIGHT CARD
======================================*/

.deled-contact-area-update .new-contact-updates-info {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #047857, #10b981);
  border-radius: 25px;
  padding: 45px 35px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.deled-contact-area-update .new-contact-updates-tag-white {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 14px;
  margin-bottom: 15px;
}

.deled-contact-area-update .new-contact-updates-info h3 {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 35px;
}

/*======================================
        CARD
======================================*/

.deled-contact-area-update .new-contact-updates-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  margin-bottom: 20px;
  transition: 0.35s;
}

.deled-contact-area-update .new-contact-updates-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(8px);
}

.deled-contact-area-update .new-contact-updates-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.deled-contact-area-update .new-contact-updates-icon i {
  color: #047857;
  font-size: 25px;
}

.deled-contact-area-update .new-contact-updates-card span {
  display: block;
  color: #d1fae5;
  font-size: 14px;
  margin-bottom: 8px;
}

.deled-contact-area-update .new-contact-updates-card a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 5px;
}

.deled-contact-area-update .new-contact-updates-card p {
  margin: 0;
  color: #fff;
  line-height: 28px;
}

/*======================================
        SOCIAL
======================================*/

.deled-contact-area-update .new-contact-updates-social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
}

.deled-contact-area-update .new-contact-updates-social a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: 0.35s;
}

.deled-contact-area-update .new-contact-updates-social a:hover {
  transform: translateY(-6px);
}

.deled-contact-area-update .new-contact-updates-social i {
  font-size: 24px;
}

.deled-contact-area-update .new-contact-updates-social .ri-whatsapp-line {
  color: #25d366;
}

.deled-contact-area-update
  .new-contact-updates-social
  .ri-facebook-circle-line {
  color: #1877f2;
}

.deled-contact-area-update .new-contact-updates-social .ri-instagram-line {
  color: #e1306c;
}

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

@media (max-width: 991px) {
  .deled-contact-area-update .new-contact-updates-form {
    padding: 30px;
    margin-bottom: 25px;
  }

  .deled-contact-area-update .new-contact-updates-info {
    padding: 30px;
  }

  .deled-contact-area-update .new-contact-updates-form h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .deled-contact-area-update .new-contact-updates-form,
  .deled-contact-area-update .new-contact-updates-info {
    padding: 25px;
  }

  .deled-contact-area-update .new-contact-updates-btn {
    width: 100%;
    justify-content: center;
  }
}

/*====================================
 DELED Main Area Updates
=====================================*/

.deled-main-area-updates {
  background: #f0fdf4;
}

/* Banner */

.deled-main-area-updates .college-banner-updates {
  width: 100%;
  text-align: center;
}

.deled-main-area-updates .college-banner-updates img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
}

/* Content Card */

.deled-main-area-updates .itep-welcome-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 25px;
  margin-top: 25px;
  margin-bottom: 25px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Heading */

.deled-main-area-updates h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #047857;
  margin-bottom: 15px;
}

.deled-main-area-updates .title-line {
  width: 80px;
  height: 4px;
  background: #047857;
  margin: 0 auto 35px;
  border-radius: 10px;
}

/* Paragraph */

.deled-main-area-updates p {
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  text-align: justify;
  margin-bottom: 25px;
}

.deled-main-area-updates strong {
  color: #222;
  font-weight: 700;
}

/* Image Box */

.deled-main-area-updates .itep-image-box {
  margin-top: 40px;
  text-align: center;
  background: #f0fdf4;

  padding: 30px;
  border-radius: 20px;

  border: 1px solid rgba(4, 120, 87, 0.15);
}

.deled-main-area-updates .itep-image-box img {
  width: 100%;
  max-width: 900px;
  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.deled-main-area-updates .itep-image-box p {
  margin-top: 20px;
  font-size: 16px;
  color: #444;
  text-align: center;
}

/* Hover Effect */

.deled-main-area-updates .itep-welcome-card:hover {
  transform: translateY(-5px);
  transition: 0.4s;

  box-shadow: 0 20px 45px rgba(4, 120, 87, 0.15);
}

/* Responsive */

@media (max-width: 768px) {
  .deled-main-area-updates {
  }

  .deled-main-area-updates .itep-welcome-card {
    padding: 25px;
  }

  .deled-main-area-updates h2 {
    font-size: 24px;
  }

  .deled-main-area-updates p {
    font-size: 15px;
    line-height: 1.7;
  }

  .deled-main-area-updates .college-banner-updates img {
  }
}

/*====================================
 Management Committee Updates
=====================================*/

.deled-area-committee-update {
  padding: 20px 0;
  background: #f0fdf4;
}

.deled-area-committee-update .committee-subtitle {
  display: inline-block;
  background: #047857;
  color: #fff;
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.deled-area-committee-update .committee-title {
  font-size: 40px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.deled-area-committee-update .committee-text {
  color: #666;
  max-width: 600px;
  margin: auto;
}

.deled-area-committee-update .committee-card {
  background: #fff;
  border-radius: 22px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
  border-top: 5px solid #047857;
}

.deled-area-committee-update .committee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(4, 120, 87, 0.15);
}

.deled-area-committee-update .committee-icon {
  width: 85px;
  height: 85px;
  margin: auto;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #ecfdf5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
}

.deled-area-committee-update .committee-icon i {
  font-size: 38px;
  color: #047857;
}

.deled-area-committee-update .committee-card:hover .committee-icon {
  background: #047857;
}

.deled-area-committee-update .committee-card:hover .committee-icon i {
  color: #fff;
}

.deled-area-committee-update .committee-card h4 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.deled-area-committee-update .committee-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.deled-area-committee-update .committee-card .btn {
  padding: 12px 30px;
  font-weight: 600;
}

.deled-area-committee-update .committee-card .btn i {
  margin-right: 8px;
}

/* Responsive */

@media (max-width: 991px) {
  .deled-area-committee-update {
    padding: 80px 0;
  }

  .deled-area-committee-update .committee-title {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .deled-area-committee-update {
    padding: 60px 0;
  }

  .deled-area-committee-update .committee-title {
    font-size: 28px;
  }

  .deled-area-committee-update .committee-card {
    padding: 30px 20px;
  }

  .deled-area-committee-update .committee-icon {
    width: 70px;
    height: 70px;
  }

  .deled-area-committee-update .committee-icon i {
    font-size: 30px;
  }
}

/* ==========================================
   Top Four DELED Heading Area Updates
   Compact Premium Header Design
========================================== */

.top-four-deled-area-update {
  padding: 10px 0;

  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 50%, #ecfdf5 100%);
}

/* Main Brand Section */

.top-four-deled-area-update .top-four-brand-box {
  display: flex;

  align-items: center;

  gap: 15px;
}

.top-four-deled-area-update .top-four-logo-img {
  max-height: 90px;

  width: auto;

  object-fit: contain;
}

/* College Information */

.top-four-deled-area-update .top-four-college-info {
  line-height: 1;
}

.top-four-deled-area-update .top-four-college-title {
  margin: 0;

  padding: 0;

  line-height: 1.1;

  font-size: 26px;

  font-weight: 800;

  color: #047857;
}

.top-four-deled-area-update .top-four-college-subtitle {
  margin: 3px 0;

  padding: 0;

  line-height: 1.15;

  font-size: 17px;

  font-weight: 700;

  color: #1e293b;
}

/* Location + Apply Button */

.top-four-deled-area-update .top-four-location-box {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-top: 5px;
}

.top-four-deled-area-update .top-four-location {
  font-size: 17px;

  font-weight: 700;

  color: #16a34a;
}

.top-four-deled-area-update .top-four-apply-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 6px 16px;

  background: linear-gradient(135deg, #059669, #047857);

  border-radius: 50px;

  color: #ffffff;

  font-size: 13px;

  font-weight: 700;

  text-decoration: none;

  transition: 0.3s ease;
}

.top-four-deled-area-update .top-four-apply-btn:hover {
  color: #ffffff;

  transform: translateY(-2px);

  box-shadow: 0 8px 18px rgba(4, 120, 87, 0.3);
}

/* ==========================================
   Recognition Section
========================================== */

.top-four-deled-area-update .top-four-recognition-box {
  border-left: 3px solid #059669;

  padding-left: 18px;
}

.top-four-deled-area-update .top-four-recognition-box p {
  margin: 5px 0;

  font-size: 14px;

  font-weight: 600;

  color: #334155;

  line-height: 1.4;
}

/* ==========================================
   Course Buttons Section
========================================== */

.top-four-deled-area-update .top-four-course-box {
  display: flex;

  flex-direction: column;

  gap: 6px;
}

.top-four-deled-area-update .top-four-course-btn {
  display: flex;

  align-items: center;

  justify-content: center;

  min-height: 34px;

  padding: 7px 12px;

  border-radius: 50px;

  color: #ffffff;

  text-decoration: none;

  font-size: 13px;

  font-weight: 700;

  line-height: 1.2;

  transition: 0.3s ease;
}

.top-four-deled-area-update .top-four-course-btn:hover {
  color: #ffffff;

  transform: translateX(-4px);
}

/* Button Colors */

.top-four-deled-area-update .course-primary {
  background: linear-gradient(135deg, #059669, #047857);
}

.top-four-deled-area-update .course-secondary {
  background: linear-gradient(135deg, #64748b, #334155);
}

.top-four-deled-area-update .course-success {
  background: linear-gradient(135deg, #16a34a, #15803d);
}

.top-four-deled-area-update .course-warning {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* ==========================================
   Desktop Container Alignment
========================================== */

.top-four-deled-area-update .container {
  max-width: 1320px;
}

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

@media (max-width: 991px) {
  .top-four-deled-area-update {
    padding: 15px 0;
  }

  .top-four-deled-area-update .top-four-brand-box {
    justify-content: center;

    flex-wrap: wrap;

    text-align: center;
  }

  .top-four-deled-area-update .top-four-location-box {
    justify-content: center;
  }

  .top-four-deled-area-update .top-four-recognition-box {
    border-left: none;

    border-top: 3px solid #059669;

    padding-left: 0;

    padding-top: 10px;

    text-align: center;
  }

  .top-four-deled-area-update .top-four-course-box {
    max-width: 400px;

    margin: auto;
  }
}

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

@media (max-width: 576px) {
  .top-four-deled-area-update .top-four-logo-img {
    max-height: 75px;
  }

  .top-four-deled-area-update .top-four-college-title {
    font-size: 22px;
  }

  .top-four-deled-area-update .top-four-college-subtitle {
    font-size: 15px;
  }

  .top-four-deled-area-update .top-four-location {
    font-size: 15px;
  }

  .top-four-deled-area-update .top-four-apply-btn {
    padding: 5px 14px;

    font-size: 12px;
  }

  .top-four-deled-area-update .top-four-course-btn {
    font-size: 12px;

    min-height: 32px;
  }
}



/*======================================
    COLLEGE NEWS / LATEST UPDATES
======================================*/

.college-aera-news-updates {
  width: 100%;
  display: flex;
  align-items: stretch;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  overflow: hidden;
}

/*======================================
        LATEST UPDATES TITLE
======================================*/

.college-aera-news-updates-title {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #064e3b, #047857, #10b981);
  color: #ffffff;
  padding: 14px 25px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  box-shadow: 5px 0 15px rgba(4, 120, 87, 0.15);
}

/*======================================
        MARQUEE
======================================*/

.college-aera-news-updates-marquee {
  flex: 1;
  display: flex;
  align-items: center;
  background: #f0fdf4;
  color: #064e3b;
  padding: 13px 15px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

/*======================================
        NEWS ICON
======================================*/

.college-aera-news-updates-icon {
  color: #047857;
  font-size: 17px;
  margin-right: 8px;
}

/*======================================
        NEWS TEXT
======================================*/

.college-aera-news-updates-text {
  color: #065f46;
  font-weight: 600;
}

/*======================================
        APPLY LINK
======================================*/

.college-aera-news-updates-link {
  color: #ea580c !important;
  font-weight: 700;
  text-decoration: none;
  margin-left: 15px;
  transition: 0.3s ease;
}

.college-aera-news-updates-link:hover {
  color: #c2410c !important;
  text-decoration: underline;
}

/*======================================
        SPACE / SEPARATOR
======================================*/

.college-aera-news-updates-space {
  color: #047857;
  font-weight: 600;
}

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

@media (max-width: 767px) {

  .college-aera-news-updates {
    display: block;
  }

  .college-aera-news-updates-title {
    width: 100%;
    padding: 11px 15px;
    font-size: 14px;
  }

  .college-aera-news-updates-marquee {
    width: 100%;
    padding: 11px 10px;
    font-size: 14px;
  }

  .college-aera-news-updates-link {
    margin-left: 10px;
  }
}