/*=========================================================
  FERROBEND
  GLOBAL STYLES
=========================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #222;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/*=========================================================
  CONTAINER
=========================================================*/

.container {
    width: 92%;
    max-width: 1380px;
    margin: auto;
}

/*=========================================================
  TOP BAR
=========================================================*/

.top-bar {
    background: #232323;
    height: 42px;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 42px;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.top-left a,
.top-right a {
    color: #ffffff;
    font-size: 14px;
    transition: .3s;
}

.top-left a:hover,
.top-right a:hover {
    color: #ff6b00;
}

.top-right i {
    color: #ff6b00;
    margin-right: 7px;
}

/*==================================================
TOP BAR — MOBILE
==================================================*/

@media (max-width: 768px) {

    .top-bar {
        height: auto;
        padding: 10px 0;
    }

    .top-bar-container {
        height: auto;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-left,
    .top-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 18px;
    }

    .top-left a,
    .top-right a {
        font-size: 12px;
    }

}

/*==================================================
TOP BAR — SMALL MOBILE
==================================================*/

@media (max-width: 400px) {

    .top-bar {
        padding: 8px 0;
    }

    .top-left,
    .top-right {
        gap: 6px 14px;
    }

    .top-left a,
    .top-right a {
        font-size: 11px;
    }

}


/*=========================================================
  HEADER
=========================================================*/

.header {
    background: #ffffff;
    border-bottom: 1px solid #ececec;

    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    height: 95px;

}

/*=========================================================
  LOGO
=========================================================*/

.logo {

    flex: 0 0 200px;

}

.logo img {

    width: 200px;

}

/*=========================================================
  NAVIGATION
=========================================================*/

.navbar {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    margin-left: 20px;
}

.header .navbar>ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header .navbar>ul>li {
    white-space: nowrap;
}

.header .navbar>ul>li>a {

    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 17px;
    font-weight: 400;

    color: #111111;

    transition: .3s;

}

.header .navbar > ul > li > a:hover{

    color:#ff6b00;

}
.navbar ul li a i {

    font-size: 11px;
    margin-left: 6px;

    transition: 0.3s;

}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 260px;
    display: none;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    padding: 10px 0;
    z-index: 9999;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a{

    display:block;

    padding:12px 20px;

    color:#222 !important;

    background:#ffffff;

}

.dropdown-menu li a:hover{

    background:#ff6b00 !important;

    color:#ffffff !important;

}

/*==================================================
  DIMENSIONS MEGA DROPDOWN
==================================================*/

.navbar {
    position: relative;
}

.nav-menu > li.dropdown:has(.dimensions-dropdown-menu) {
    position: static;
}

.nav-menu > li.dropdown > .dimensions-dropdown-menu {

    display: none;

    position: absolute;

    top: calc(100% + 20px);
    left: 50%;

    transform: translateX(-50%);

    width: 900px;
    min-width: 900px;

    grid-template-columns: repeat(3, 1fr);

    gap: 8px 30px;

    padding: 20px;

    margin: 0;

    background: #ffffff;

    border-radius: 12px;

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

    z-index: 9999;

    box-sizing: border-box;
}

.nav-menu > li.dropdown:hover > .dimensions-dropdown-menu {
    display: grid;
}

.nav-menu > li.dropdown > .dimensions-dropdown-menu li a {

    display: block;

    padding: 12px 20px;

    color: #222222;

    white-space: nowrap;
}

.nav-menu > li.dropdown > .dimensions-dropdown-menu li a:hover {
    background: #ff6b00 !important;
    color: #ffffff !important;
}

.dimensions-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}


@media (hover: hover) and (pointer: fine) {
    .dropdown-menu li a:hover{

        background:#ff6b00 !important;

        color:#ffffff !important;

    }
}



/*=========================================================
  HEADER RIGHT
=========================================================*/

.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}


/*=========================================================
  BUTTON
=========================================================*/
.contact-btn {

    padding: 14px 22px;

    border: 1px solid #d7d7d7;

    color: #0B1F33;

    border-radius: 5px;

    font-size: 15px;

    font-weight: 600;

    transition: .25s ease;

}

.contact-btn:hover {

    background: #0B1F33;

    color: #ffffff;

}

.quote-btn {

    background: #ff6b00;

    color: #ffffff;

    padding: 18px 32px;

    border-radius: 5px;

    font-size: 17px;

    font-weight: 600;

    transition: .25s ease;

}

/*=========================================================
  SEARCH
=========================================================*/

.search-btn {
    width: 48px;
    height: 48px;
    border: 1px solid #d9d9d9;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #111111;

    font-size: 22px;

    transition: 0.25s;

}

.search-btn:hover {

    border-color: #ff6b00;
    color: #ff6b00;

}

/*==================================================*
*MENU TOGGLE — DESKTOP (hidden)*
*==================================================*/

.menu-toggle {

    display: none;

    background: none;

    border: none;

    font-size: 26px;

    color: #111111;

    cursor: pointer;

}


/*==================================================
  MOBILE HEADER
==================================================*/

@media (max-width: 768px) {

    .header-container {

        position: relative;

        height: 80px;

    }


    /* LOGO */

    .logo {

        flex: 0 0 auto;

    }

    .logo img {

        width: 170px;

    }


    /* HIDE DESKTOP CONTROLS */

    .header-right {

        display: none;

    }


    /* HAMBURGER */

    .menu-toggle {

        display: flex;

        align-items: center;

        justify-content: center;

        margin-left: auto;

        width: 44px;

        height: 44px;

        background: none;

        border: none;

        font-size: 26px;

        color: #111111;

        cursor: pointer;

    }


    /* MOBILE NAVIGATION */

.navbar {
    display: none;
    order: 3;
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: #ffffff;
    margin-left: 0;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);

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


    .navbar.active {

        display: block;

    }


    .header .navbar > ul {

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        width: 100%;

    }


    .header .navbar > ul > li {

        width: 100%;

        border-bottom: 1px solid #ececec;

    }


    .header .navbar > ul > li > a {

        width: 100%;

        padding: 14px 20px;

        justify-content: space-between;

    }


    /* MOBILE DROPDOWN */

    .dropdown-menu {

        position: static;

        display: none;

        width: 100%;

        min-width: 0;

        padding: 0 0 0 15px;

        box-shadow: none;

        border-radius: 0;

    }


    .dropdown.active .dropdown-menu {

        display: block;

    }

        /* DIMENSIONS MEGA DROPDOWN — MOBILE */

.dropdown.active > .dimensions-dropdown-menu {

    display: block !important;

    position: static !important;

    grid-template-columns: 1fr !important;

    width: 100% !important;
    min-width: 0 !important;

    transform: none !important;
    left: auto !important;

    padding: 10px 0 !important;

    box-shadow: none !important;

    gap: 0 !important;

}

.nav-menu > li.dropdown > .dimensions-dropdown-menu li a {

    padding: 12px 20px !important;

    white-space: normal !important;

}

}

/*==================================================
  SMALL MOBILE HEADER
==================================================*/

@media (max-width: 400px) {

    .header-container {

        height: 72px;

    }


    .logo img {

        width: 150px;

    }


    .menu-toggle {

        width: 40px;

        height: 40px;

        font-size: 24px;

    }


    .header .navbar > ul > li > a {

        padding: 13px 16px;

        font-size: 15px;

    }

          @media (max-width: 480px) {

    .dimensions-dropdown-menu li a {

        padding: 10px 16px !important;

        font-size: 14px !important;

    }
}

}

/*==========================================================
  ASME / ANSI DIMENSIONS PAGE — HERO SECTION
==========================================================*/

.dimensions-hero {
    background: #17232f;
    color: #ffffff;
    padding: 56px 32px;
    overflow: hidden;
}


/*==========================================================
  HERO CONTAINER
==========================================================*/

.dimensions-hero-container {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;
}


/*==========================================================
  LEFT — HERO CONTENT
==========================================================*/

.dimensions-hero-content {
    width: 40%;
    flex-shrink: 0;
}


/*----------------------------------------------------------
  TOP BADGE / TAG
----------------------------------------------------------*/

.dimensions-hero-badge {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 16px;

    font-size: 12px;
    line-height: 1.4;

    font-weight: 600;
    letter-spacing: 0.5px;

    color: #f0997b;

    text-transform: uppercase;
}

.dimensions-hero-badge .badge-dot {
    color: #e8722b;
}


/*----------------------------------------------------------
  HERO TITLE
----------------------------------------------------------*/

.dimensions-hero-content h1 {
    margin: 0 0 18px;

    font-size: 38px;
    line-height: 1.15;

    font-weight: 700;

    color: #ffffff;
}


/*----------------------------------------------------------
  HERO DESCRIPTION
----------------------------------------------------------*/

.dimensions-hero-description {
    max-width: 500px;

    margin: 0 0 24px;

    font-size: 14px;
    line-height: 1.65;

    color: #c9d2dc;
}


/*==========================================================
  STATS
==========================================================*/

.dimensions-hero-stats {
    display: flex;
    align-items: center;

    gap: 28px;

    margin-bottom: 26px;
}


/*----------------------------------------------------------
  INDIVIDUAL STAT
----------------------------------------------------------*/

.dimensions-stat {
    display: flex;
    flex-direction: column;
}

.dimensions-stat strong {
    display: block;

    margin-bottom: 2px;

    font-size: 26px;
    line-height: 1;

    font-weight: 700;

    color: #e8722b;
}

.dimensions-stat span {
    font-size: 12px;
    line-height: 1.4;

    color: #9aa7b5;
}


/*----------------------------------------------------------
  STAT DIVIDER
----------------------------------------------------------*/

.dimensions-stat-divider {
    width: 1px;
    height: 34px;

    background: #354453;
}


/*==========================================================
  CTA BUTTONS
==========================================================*/

.dimensions-hero-buttons {
    display: flex;
    align-items: center;

    gap: 12px;
}


/*----------------------------------------------------------
  COMMON BUTTON
----------------------------------------------------------*/

.dimensions-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 0 22px;

    border-radius: 6px;

    font-size: 14px;
    line-height: 1;

    font-weight: 600;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


/*----------------------------------------------------------
  PRIMARY BUTTON
----------------------------------------------------------*/

.dimensions-btn-primary {
    background: #e8722b;
    color: #ffffff;

    border: 1px solid #e8722b;
}

.dimensions-btn-primary:hover {
    background: #d96320;
    border-color: #d96320;

    transform: translateY(-1px);
}


/*----------------------------------------------------------
  SECONDARY BUTTON
----------------------------------------------------------*/

.dimensions-btn-secondary {
    background: transparent;
    color: #ffffff;

    border: 1px solid #4a5a6c;
}

.dimensions-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.04);

    border-color: #718194;

    transform: translateY(-1px);
}


/*==========================================================
  RIGHT — CAD DRAWING
==========================================================*/

.dimensions-hero-visual {
    width: 60%;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    flex-shrink: 0;

    min-width: 0;
}


/*----------------------------------------------------------
  TRANSPARENT TECHNICAL DRAWING
----------------------------------------------------------*/

.dimensions-hero-drawing {
    display: block;

    width: 100%;
    max-width: 820px;

    height: auto;

    object-fit: contain;

    background: transparent;

    /*
      Washed-out / faded technical drawing effect.
      Drawing ka original transparent background
      completely visible rahega.
    */
    opacity: 0.82;
}


/*==========================================================
  DESKTOP — LARGE HERO
==========================================================*/

@media (min-width: 1101px) {

    .dimensions-hero-container {
        min-height: 430px;
    }

    .dimensions-hero-visual {
        margin-right: -20px;
    }

    .dimensions-hero-drawing {
        transform: translateX(10px);
    }
}


/*==========================================================
  TABLET
==========================================================*/

@media (max-width: 1100px) {

    .dimensions-hero {
        padding: 50px 28px;
    }

    .dimensions-hero-container {
        gap: 25px;
    }

    .dimensions-hero-content {
        width: 42%;
    }

    .dimensions-hero-visual {
        width: 58%;
    }

    .dimensions-hero-drawing {
        max-width: 650px;
    }

    .dimensions-hero-content h1 {
        font-size: 34px;
    }

    .dimensions-hero-description {
        font-size: 13px;
    }

}


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

@media (max-width: 900px) {

    .dimensions-hero {
        padding: 45px 24px;
    }

    .dimensions-hero-container {
        flex-direction: column;

        align-items: stretch;

        gap: 40px;
    }


    /*------------------------------------------------------
      CONTENT
    ------------------------------------------------------*/

    .dimensions-hero-content {
        width: 100%;
        max-width: 600px;
    }

    .dimensions-hero-content h1 {
        font-size: 32px;
        line-height: 1.15;
    }

    .dimensions-hero-description {
        max-width: 600px;

        font-size: 14px;
    }


    /*------------------------------------------------------
      DRAWING
    ------------------------------------------------------*/

    .dimensions-hero-visual {
        width: 100%;

        justify-content: center;

        margin: 0;
    }

    .dimensions-hero-drawing {
        width: 100%;
        max-width: 650px;

        transform: none;
    }

}


/*==========================================================
  SMALL MOBILE
==========================================================*/

@media (max-width: 600px) {

    .dimensions-hero {
        padding: 38px 20px;
    }

    .dimensions-hero-container {
        gap: 32px;
    }


    /*------------------------------------------------------
      BADGE
    ------------------------------------------------------*/

    .dimensions-hero-badge {
        font-size: 10px;
        gap: 5px;

        margin-bottom: 13px;
    }


    /*------------------------------------------------------
      TITLE
    ------------------------------------------------------*/

    .dimensions-hero-content h1 {
        font-size: 30px;
    }


    /*------------------------------------------------------
      DESCRIPTION
    ------------------------------------------------------*/

    .dimensions-hero-description {
        font-size: 13px;
        line-height: 1.6;
    }


    /*------------------------------------------------------
      STATS
    ------------------------------------------------------*/

    .dimensions-hero-stats {
        gap: 22px;

        margin-bottom: 24px;
    }

    .dimensions-stat strong {
        font-size: 24px;
    }

    .dimensions-stat span {
        font-size: 11px;
    }


    /*------------------------------------------------------
      BUTTONS
    ------------------------------------------------------*/

    .dimensions-hero-buttons {
        flex-direction: column;

        align-items: stretch;

        width: 100%;
    }

    .dimensions-btn {
        width: 100%;

        box-sizing: border-box;
    }


    /*------------------------------------------------------
      DRAWING
    ------------------------------------------------------*/

    .dimensions-hero-drawing {
        width: 100%;
        max-width: 560px;
    }

}


/*==========================================================
  EXTRA SMALL MOBILE
==========================================================*/

@media (max-width: 420px) {

    .dimensions-hero {
        padding: 32px 16px;
    }

    .dimensions-hero-content h1 {
        font-size: 28px;
    }

    .dimensions-hero-description {
        font-size: 12.5px;
    }

    .dimensions-hero-stats {
        gap: 18px;
    }

    .dimensions-stat strong {
        font-size: 22px;
    }

    .dimensions-stat span {
        font-size: 10px;
    }

    .dimensions-hero-container {
        gap: 28px;
    }

}


/*==========================================================
  END — ASME / ANSI DIMENSIONS PAGE — HERO SECTION
==========================================================*/

/*==========================================================
  ASME PAGE — SUB-STANDARDS SELECTOR SECTION
  (B16.5 / B16.47 / B16.36)
==========================================================*/

.asme-substandards {
  background: #eef1f5;
  padding: 56px 24px;
}

.asme-substandards__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 32px;
}

.asme-substandards__header h2 {
  font-size: 26px;
  font-weight: 700;
  color: #16223a;
  margin: 0 0 8px;
}

.asme-substandards__header p {
  font-size: 14px;
  color: #5b6b82;
  margin: 0;
  line-height: 1.5;
}

.asme-substandards__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
}

/* ---- Row (whole row is a clickable link) ---- */
.std-row {
  text-decoration: none;
  background: #ffffff;
  border-radius: 12px;
  padding: 26px 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 22px;
  border-left: 4px solid #e8722b;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}

.std-row:hover,
.std-row:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ---- Accent colors per standard ---- */
.std-row--orange { border-left-color: #e8722b; }
.std-row--blue   { border-left-color: #2e6fa8; }
.std-row--green  { border-left-color: #4a8f5c; }

.std-row--orange .std-row__icon { background: #fdf1e8; }
.std-row--blue   .std-row__icon { background: #eaf2f9; }
.std-row--green  .std-row__icon { background: #eaf5ec; }

.std-row--orange .std-row__badge { background: #fdf1e8; color: #e8722b; }
.std-row--blue   .std-row__badge { background: #eaf2f9; color: #2e6fa8; }
.std-row--green  .std-row__badge { background: #eaf5ec; color: #4a8f5c; }

/* ---- Icon box ---- */
.std-row__icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 26px;
}

/* ---- Body text ---- */
.std-row__body {
  flex: 1;
}

.std-row__title-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.std-row__title {
  font-size: 18px;
  font-weight: 700;
  color: #16223a;
}

.std-row__badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.std-row__desc {
  font-size: 13px;
  color: #5b6b82;
  margin: 0 0 4px;
}

.std-row__sub {
  font-size: 11px;
  color: #9aa7b5;
  margin: 0;
}

/* ---- CTA ---- */
.std-row__cta {
  font-size: 13px;
  color: #e8722b;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

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

@media (max-width: 640px) {
  .std-row {
    flex-wrap: wrap;
    padding: 20px;
  }

  .std-row__cta {
    width: 100%;
    text-align: right;
    margin-top: 10px;
  }
}

/*==========================================================
  END — ASME PAGE — SUB-STANDARDS SELECTOR SECTION
==========================================================*/

/*==================================================
CALL TO ACTION
==================================================*/

.cta-section {

    background-color: #d4822f;

    padding: 70px 20px;

    text-align: center;

}

.cta-section h2 {

    color: #ffffff;

    font-size: 42px;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 15px;

}

.cta-section p {

    color: #ffffff;

    font-size: 20px;

    line-height: 1.6;

    margin-bottom: 30px;

    opacity: 0.95;

}

.cta-btn-group {

    display: flex;

    gap: 16px;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

}

.cta-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 28px;

    border-radius: 8px;

    text-decoration: none;

    font-weight: 700;

    font-size: 17px;

    transition: all .3s ease;

}

.cta-btn-primary {

    background-color: #0a2540;

    color: #ffffff;

    border: 2px solid #0a2540;

}

.cta-btn-primary:hover {

    background-color: #ffffff;

    color: #d4822f;

    border-color: #ffffff;

}

.cta-btn-secondary {

    background-color: #0a2540;

    color: #ffffff;

    border: 2px solid #0a2540;

}

.cta-btn-secondary:hover {

    background-color: #ffffff;

    color: #d4822f;

    border-color: #ffffff;

}

/*==================================================
CTA - MOBILE
==================================================*/

@media (max-width: 768px) {

    .cta-section {

        padding: 55px 20px;

    }

    .cta-section h2 {

        font-size: 32px;

        line-height: 1.25;

        margin-bottom: 14px;

    }

    .cta-section p {

        font-size: 17px;

        line-height: 1.6;

        margin-bottom: 25px;

    }

    .cta-btn-group {

        flex-direction: column;

        gap: 12px;

        width: 100%;

    }

    .cta-btn {

        width: 100%;

        max-width: 380px;

        padding: 14px 20px;

        font-size: 16px;

    }

}

/*==================================================
FOOTER
==================================================*/

.footer {

    background: #17232f;

    padding: 80px 0 25px;

    color: #fff;

}

.footer-grid {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 45px;

}

.footer-column h4 {

    color: #ef7f1a;

    font-size: 14px;

    letter-spacing: 2px;

    margin-bottom: 25px;

}

.footer-column ul li {

    margin-bottom: 14px;

}

.footer-column ul li a {

    color: #cfcfcf;

    font-size: 15px;

    transition: .3s;

}

.footer-column ul li a:hover {

    color: #ef7f1a;

}

.footer-contact p {

    display: flex;

    gap: 12px;

    margin-bottom: 18px;

    color: #d9d9d9;

    line-height: 1.7;

}

.footer-contact i {

    color: #ef7f1a;

    margin-top: 4px;

}

.footer-contact a {

    color: #d9d9d9;

}

.footer-social {

    display: flex;

    gap: 14px;

    margin: 25px 0;

}

.footer-social a {

    width: 50px;

    height: 50px;

    border: 2px solid #ef7f1a;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 8px;

    color: #ef7f1a;

    transition: .35s;

}

.footer-social a:hover {

    background: #ef7f1a;

    color: #ffffff;

    transform: translateY(-4px);

}

#liveDateTime {

    font-size: 17px;

    margin-top: 18px;

    color: #ffffff;

    line-height: 1.4;

}


.footer-bottom {

    margin-top: 60px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, .1);

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.footer-bottom p {

    color: #cfcfcf;

}

.footer-bottom div {

    display: flex;

    gap: 25px;

}

.footer-bottom a {

    color: #cfcfcf;

}

.footer-bottom a:hover {

    color: #ef7f1a;

}

/*==================================================
FLOATING WHATSAPP
==================================================*/

.whatsapp-float{

    position:fixed;

    right:30px;

    bottom:30px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    box-shadow:0 12px 30px rgba(37,211,102,.35);

    z-index:9999;

    transition:.35s ease;

}

.whatsapp-float i{

    color:#ffffff;

    font-size:34px;

}

.whatsapp-float:hover{

    transform:translateY(-6px) scale(1.08);

    box-shadow:0 18px 38px rgba(37,211,102,.45);

}

/*==================================================
FOOTER - TABLET
==================================================*/

@media (max-width: 900px) {

    .footer {

        padding: 65px 0 25px;

    }

    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 45px 35px;

    }

    .footer-column h4 {

        margin-bottom: 20px;

    }

    .footer-contact {

        grid-column: 1 / -1;

    }

}


/*==================================================
FOOTER - MOBILE
==================================================*/

@media (max-width: 780px) {

    .footer {

        padding: 55px 0 25px;

    }

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }

    .footer-column {

        width: 100%;

    }

    .footer-column h4 {

        font-size: 14px;

        margin-bottom: 18px;

    }

    .footer-column ul li {

        margin-bottom: 12px;

    }

    .footer-column ul li a {

        font-size: 15px;

    }

    .footer-contact {

        grid-column: auto;

    }

    .footer-contact p {

        font-size: 15px;

        gap: 10px;

        margin-bottom: 16px;

    }

    .footer-social {

        gap: 10px;

        margin: 22px 0;

        flex-wrap: wrap;

    }

    .footer-social a {

        width: 44px;

        height: 44px;

    }

    #liveDateTime {

        font-size: 14px;

        line-height: 1.5;

    }

    .footer-bottom {

        margin-top: 40px;

        padding-top: 20px;

        flex-direction: column;

        align-items: center;

        gap: 18px;

        text-align: center;

    }

    .footer-bottom p {

        font-size: 14px;

        margin: 0;

    }

    .footer-bottom div {

        flex-wrap: wrap;

        justify-content: center;

        gap: 12px 20px;

    }

    .footer-bottom a {

        font-size: 14px;

    }

}


/*==================================================
FOOTER - SMALL MOBILE
==================================================*/

@media (max-width: 480px) {

    .footer {

        padding: 45px 0 20px;

    }

    .footer-grid {

        gap: 30px;

    }

    .footer-column h4 {

        font-size: 13px;

        letter-spacing: 1.5px;

    }

    .footer-column ul li a {

        font-size: 14px;

    }

    .footer-contact p {

        font-size: 14px;

    }

    .footer-social {

        gap: 8px;

    }

    .footer-social a {

        width: 42px;

        height: 42px;

    }

    .footer-social a i {

        font-size: 16px;

    }

    #liveDateTime {

        font-size: 13px;

    }

    .footer-bottom div {

        gap: 10px 16px;

    }

    .footer-bottom a {

        font-size: 13px;

    }

}


/*==================================================
FLOATING WHATSAPP - MOBILE
==================================================*/

@media (max-width: 780px) {

    .whatsapp-float {

        width: 56px;

        height: 56px;

        right: 18px;

        bottom: 18px;

    }

    .whatsapp-float i {

        font-size: 29px;

    }

}


/*==================================================
FLOATING WHATSAPP - SMALL MOBILE
==================================================*/

@media (max-width: 480px) {

    .whatsapp-float {

        width: 52px;

        height: 52px;

        right: 14px;

        bottom: 14px;

    }

    .whatsapp-float i {

        font-size: 27px;

    }

}