.elementor-212 .elementor-element.elementor-element-e978ccf{--display:flex;}/* Start custom CSS for html, class: .elementor-element-20a3624 *//* ============================================================
   HEADER — EXACT LIKE SIDDHA GROUP
============================================================ */
.sg-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 70px;
  z-index: 9999;
  transition: all 0.3s ease;
}

.sg-header-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* -------- LOGO -------- */
.sg-logo img {
  height: 60px;
  transition: opacity 0.3s ease;
}
.logo-dark {
  display: none;
}
.sg-header.header-inverse .logo-white {
  display: none;
}
.sg-header.header-inverse .logo-dark {
  display: block;
}

/* -------- NAVIGATION -------- */
.sg-nav {
  display: flex;
  gap: 40px;
}
.sg-nav a {
  font-size: 17px;
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.4px;
  transition: color 0.3s ease;
}
/* ===========================
   DESKTOP SUBMENU
=========================== */
.sg-has-sub {
  position: relative;
}

.sg-has-sub .sg-submenu {
  position: absolute;
  top: 32px;
  left: 0;
  background: #fff;
  padding: 20px 0;
  min-width: 220px;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 99999;
}

.sg-has-sub:hover .sg-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sg-submenu a {
  display: block;
  padding: 10px 22px;
  color: #000 !important;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.25s ease;
}

.sg-submenu a:hover {
  background: #f4f4f4;
}
.sg-header.header-inverse .sg-submenu {
  background: #fff;
}
/* ===========================
   MOBILE SUBMENU
=========================== */
.sg-mobile-has-sub {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #f1f1f1;
}

.sg-mobile-parent {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  text-align: left;
  padding: 10px 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.sg-mobile-parent span {
  font-weight: bold;
  transition: transform 0.3s ease;
}

.sg-mobile-parent.active span {
  transform: rotate(45deg);
}

.sg-mobile-submenu {
  display: none;
  flex-direction: column;
  padding-left: 15px;
  gap: 10px;
  margin-top: 8px;
}

.sg-mobile-submenu a {
  color: #fff !important;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sg-mobile-submenu.show a {
  opacity: 1;
  transform: translateX(0);
}

.sg-header.header-inverse .sg-nav a {
  color: #000;
}
.down-arrow {
  font-size: 12px;
  margin-left: 4px;
}

/* -------- RIGHT BUTTONS -------- */
.sg-header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Enquire Button */
.sg-enquire-btn {
  padding: 5px 30px;
  border: 1px solid currentColor;
  border-radius: 24px;
  font-size: 15px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}
.sg-header.header-inverse .sg-enquire-btn {
  color: #000;
  border-color: #000;
}
.sg-enquire-btn:hover {
  background: #18425d;
  color: #fff !important;
  border-color: #18425d !important;
}

/* Icon circles */
.sg-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sg-icon-circle img {
  width: 20px;
}

/* Change icons to white background on first slide */
.sg-header.header-inverse .sg-icon-circle {
  background: #000;
}
.sg-header:not(.header-inverse) .sg-icon-circle {
  background: #fff;
}
/* ALWAYS white icons */
.sg-icon-circle i {
  fill: currentColor;
  color: #fff !important;
  font-size: 20px;
}
.sg-icon-circle i:hover {
  color: #cbd5da !important;
}

/* -------- BURGER MENU -------- */
.sg-burger span {
  height: 2px;
  width: 100%;
  background: #fff;
  transition: all 0.3s ease;
}
.sg-header.header-inverse .sg-burger span {
  background: #000;
}

/* ===========================
   MOBILE MENU — BLACK THEME
============================== */

.sg-mobile-menu {
  position: fixed;
  top: -500%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  padding: 120px 70px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 25px;
  transition: top 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99999;
  overflow-x: scroll;
}

.sg-mobile-menu a {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
  border-bottom: 1px solid #f1f1f1;
}

.sg-mobile-menu a,
.sg-mobile-parent {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.45s ease;
}

.sg-mobile-menu.active {
  top: 0;
}

.sg-mobile-menu.active a,
.sg-mobile-menu.active .sg-mobile-parent {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger */
.sg-mobile-menu.active a:nth-child(1) {
  transition-delay: 0.1s;
}
.sg-mobile-menu.active a:nth-child(2) {
  transition-delay: 0.18s;
}
.sg-mobile-menu.active a:nth-child(3) {
  transition-delay: 0.26s;
}
.sg-mobile-menu.active a:nth-child(4) {
  transition-delay: 0.34s;
}

/* ===========================
   BURGER → X ANIMATION
============================== */
.sg-burger {
  width: 26px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 10000;
  transition: transform 0.35s ease;
}

/* Rotate 108° on hover */
.sg-burger:hover {
  transform: rotate(90deg);
}

.sg-burger span {
  height: 2px;
  width: 100%;
  background: #fff;
  transition: all 0.35s ease;
}

.sg-header.header-inverse .sg-burger span {
  background: #000 !important;
}

/* When active → Make a clean X */
.sg-burger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.sg-burger.active span:nth-child(2) {
  opacity: 0;
}
.sg-burger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 991px) {
  .sg-nav {
    display: none; /* Hide desktop menu */
  }
  .sg-burger {
    display: flex; /* Show burger */
    z-index: 100000;
  }
  .sg-icon-circle {
    display: flex;
  }
  .sg-enquire-btn {
    display: none;
  }
  .sg-header {
    padding: 15px 25px;
  }
  .sg-header.header-inverse .sg-burger.active span {
    background: #fff !important;
  }
  .sg-logo img {
    height: 40px;
    position: relative;
    z-index: 100000;
  }
}

/* ===========================================
   HEADER SCROLL BEHAVIOR (Black Header)
=========================================== */
.sg-header.scrolled {
  background: #000;
  transition: all 0.3s ease;
}

/* White logo visible on scroll */
.sg-header.scrolled .logo-white {
  display: block !important;
}
.sg-header.scrolled .logo-dark {
  display: none !important;
}

/* Menu turns white */
.sg-header.scrolled .sg-nav a {
  color: #fff !important;
}

/* Enquire button turns white */
.sg-header.scrolled .sg-enquire-btn {
  color: #fff !important;
  border-color: #fff !important;
}

/* Mobile burger bars turn white */
.sg-header.scrolled .sg-burger span {
  background: #fff !important;
}

.sg-header.scrolled .sg-submenu {
  background: #000 !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.sg-header.scrolled .sg-submenu a {
  color: #fff !important;
}

.sg-header.scrolled .sg-submenu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Force white logo when mobile menu is open */
.sg-header.mobile-menu-open .logo-white {
  display: block !important;
}
.sg-header.mobile-menu-open .logo-dark {
  display: none !important;
}

/* ================================
   MOBILE CTA BUTTONS
================================ */
.sg-mobile-cta {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sg-cta-btn {
  width: 100%;
  padding: 12px 0;
  border-radius: 30px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff !important;
  font-size: 16px;
  text-align: center;
  display: block;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.sg-cta-btn:hover {
  background: #ffffff20;
}

/* ================================
   SOCIAL ICONS
================================ */
.sg-mobile-social {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.sg-mobile-social a {
  width: 40px;
  height: 40px;
  background: #1f1f1f;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff !important;
  font-size: 18px;
  transition: all 0.3s ease;
}

.sg-mobile-social a:hover {
  background: #333;
}

.sg-header.menu-opened .sg-nav {
  opacity: 0;
  pointer-events: none;
}

/* -------------------------
   Desktop overlay menu
   ------------------------- */
.sg-burger-desktop {
  display: flex;
  cursor: pointer;
  margin-left: 18px;
}
@media (max-width: 991px) {
  .sg-burger-desktop {
    display: none;
  }
}

/* Overlay container */
.sg-desktop-overlay {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: #000;
  color: #fff;
  transform: translateY(-100%);
  transition: transform 0.62s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  opacity: 0;
}

/* When active */
.sg-desktop-overlay.active {
  transform: translateY(0);
  pointer-events: auto;
  opacity: 1;
}

/* inner layout container */
.sg-desktop-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 70px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* header row inside overlay */
.sg-desktop-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.sg-desktop-head .logo-white {
  height: 42px;
  display: block;
}

/* close button on top-right */
.sg-desktop-close {
  font-size: 26px;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 10px;
}

/* 2-column grid */
.sg-desktop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 160px;
  align-items: flex-start;
  flex: 1;
  padding-top: 20px;
}

/* nav columns */
.sg-desktop-col {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

/* each menu-link */
.menu-link {
    display: flex;
    align-items: center;
    gap: 22px;
    cursor: pointer;
    position: relative;
    font-size: 30px;
    color: #fff;
    transition: .3s ease;
}
.menu-line {
    width: 0;
    height: 2px;
    background: #fff;
    transition: width .32s cubic-bezier(.2,.9,.3,1);
}

.menu-arrow {
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .32s ease, transform .32s cubic-bezier(.2,.9,.3,1);
    font-size: 18px;
}
.menu-link:hover .menu-num {
    transform: translateX(-16px);
    color: #18425d;
    opacity: 1;
}

.menu-link:hover .menu-title {
    transform: translateX(14px);
    color: #18425d;
}

.menu-link:hover .menu-line {
    width: 50px; /* EXACT Siddha width */
}

.menu-link:hover .menu-arrow {
    opacity: 1;
    transform: translateX(6px);
}

/* keep project inline items white on hover */
.projects-line:hover .projects-inline a {
    color: #fff !important;
}
/* stagger reveal when overlay active */
.sg-desktop-overlay.active .menu-link {
  transform: translateX(0);
  opacity: 1;
}
.sg-desktop-overlay.active .menu-link:nth-of-type(1) {
  transition-delay: 0.05s;
}
.sg-desktop-overlay.active .menu-link:nth-of-type(2) {
  transition-delay: 0.11s;
}
.sg-desktop-overlay.active .menu-link:nth-of-type(3) {
  transition-delay: 0.17s;
}
.sg-desktop-overlay.active .menu-link:nth-of-type(4) {
  transition-delay: 0.23s;
}
.sg-desktop-overlay.active .menu-link:nth-of-type(5) {
  transition-delay: 0.29s;
}
.sg-desktop-overlay.active .menu-link:nth-of-type(6) {
  transition-delay: 0.35s;
}
.sg-desktop-overlay.active .menu-link:nth-of-type(7) {
  transition-delay: 0.41s;
}
.sg-desktop-overlay.active .menu-link:nth-of-type(8) {
  transition-delay: 0.47s;
}
.sg-desktop-overlay.active .menu-link:nth-of-type(9) {
  transition-delay: 0.53s;
}
.sg-desktop-overlay.active .menu-link:nth-of-type(10) {
  transition-delay: 0.59s;
}

/* number at left */
.menu-num {
  display: inline-block;
  min-width: 36px;
  font-size: 14px;
  opacity: 0.6;
  transform: translateX(-6px);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.28s;
  color: #cfcfcf;
}

/* title text */
.menu-title {
  display: inline-block;
  font-weight: 400;
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1), color 0.25s;
}

/* underline bar (grows on hover) */
.menu-title::after {
  content: "";
  display: block;
  height: 2px;
  width: 0%;
  background: #18425d;
  margin-top: 10px;
  transition: width 0.32s ease;
  transform-origin: left center;
}

/* Projects inline links (same-line) */
.projects-line {
  align-items: center;
  gap: 16px;
}
.projects-inline {
  margin-left: 56px;
  display: inline-flex;
  gap: 16px;
  align-items: center;
}
.projects-inline a {
  color: #f1f1f1;
  text-decoration: none;
  font-size: 16px;
  opacity: 0.9;
  padding-left: 6px;
  transition: color 0.2s ease;
}

/* arrow after Projects title */
.proj-arrow {
  margin-left: 8px;
  color: #18425d;
  font-size: 20px;
  opacity: 0.95;
}

/* When Projects line hovered keep inline links visible color */
.projects-line:hover .projects-inline a {
  color: #fff;
}

/* CTA block */
.sg-desktop-cta-wrap {
  display: flex;
  align-items: center;
  gap: 100%;
  margin-top: 26px;
  justify-content: space-between;
}
.sg-desktop-ctas {
  display: flex;
  gap: 15px;
}
/* CTA buttons */
.sg-cta-lg {
  padding: 5px 40px;
  border-radius: 30px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  width: 200px;
  text-align: center;
}
.sg-cta-lg.outline {
  background: transparent;
}
.sg-cta-lg:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* desktop socials (bottom right area of grid) */
.sg-desktop-socials {
  display: flex;
  gap: 12px;
  align-items: center;
  position:relative;
  right: 50%;
}
.sg-desktop-socials a {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #1f1f1f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}
.sg-desktop-socials a:hover {
  background: #333;
}

/* Force white logo + burger when menu open */
.sg-header.menu-opened .logo-white,
.sg-header.menu-opened .sg-burger-desktop span {
  display: block;
}
.sg-header.menu-opened .sg-burger-desktop span {
  background: #fff;
}

/* Make burger lines white when open */
.sg-burger-desktop span {
  background: #fff;
  display: block;
  height: 2px;
  width: 22px;
  border-radius: 2px;
  transition: all 0.35s;
}

/* close on small screens fallback */
@media (max-width: 991px) {
  .sg-desktop-overlay {
    display: none;
  }
  .sg-burger-desktop {
    display: none;
  }
}
/* 1500px - 1599px */
@media (max-width: 1599px) {
  .sg-desktop-inner {
    padding: 40px 60px;
  }
  .sg-desktop-grid {
    gap: 0 120px;
  }
  .menu-link {
    font-size: 28px;
  }
}

/* 1400px - 1499px */
@media (max-width: 1499px) {
  .sg-desktop-grid {
    gap: 0 100px;
  }
  .menu-link {
    font-size: 26px;
  }
  .menu-num {
    min-width: 32px;
    font-size: 13px;
  }
}

/* 1280px - 1399px (MOST WINDOWS LAPTOPS) */
@media (max-width: 1399px) {
  .sg-desktop-inner {
    padding: 32px 50px;
  }
  .sg-desktop-grid {
    gap: 0 80px;
  }
  .menu-link {
    font-size: 24px;
    gap: 16px;
  }
  .projects-inline a {
    font-size: 14px;
  }
}/* End custom CSS */