/* ========================================
   NEXORA ELECTROTECH - MAIN STYLESHEET
   style.css
   ======================================== */

/* ---- CSS Variables ---- */
:root {
    --primary: #095D9D;
    --primary-dark: #095D9D;
    --secondary: #000;
    --dark: #0d1b2a;
    --text: #444;
    --text-light: #505050;
    --white: #fff;
    --light-bg: #f4f8fb;
    --border: #e5eaf0;
    --radius: 8px;
    --shadow: 0 4px 24px rgba(0, 40, 71, 0.10);
    --transition: 0.3s ease;
    --font: "Poppins", sans-serif;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background: var(--white);
    font-size: 18px;
    line-height: 30px;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

p {
    font-family: "Poppins", sans-serif;
}

strong {
    font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
}

/* ---- Container ---- */
.container {
    margin: 0 auto;
    position: relative;
    max-width: 1600px;
}

/* ---- Preloader ---- */

 #page-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}

#page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  width: 80px;
  height: 80px;
  position: absolute;
  z-index: 2;
  object-fit: contain;
  animation: pulse 1.5s infinite ease-in-out;
}

.loader-spinner {
  width: 130px;
  height: 130px;
  border: 3px solid transparent;
  border-top-color:#117cb8;
  border-radius: 50%;
  position: relative;
  animation: spin 1.2s linear infinite;
}

.loader-spinner::after {
  content: '';
  position: absolute;
  inset:3px;
  border: 3px solid transparent;
  border-top-color: #727271;
  border-radius: 50%;
  animation: spin 2s linear infinite reverse;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}


/* ---- Top Bar ---- */
.top-bar {
    background: #013862;
    padding: 15px 0;
    color: #fff;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    /* moves content to right */
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    text-align: right;
}

.top-bar-left a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}

.top-bar-left a:hover,
.top-bar-right a:hover {
    color: #1eadde;
}

/*.top-bar-right { display: flex; gap: 14px; }
.top-bar-right a {
    width: 28px; height: 28px;
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 50%;
    justify-content: center;
    font-size: 12px;
}
.top-bar-right a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
*/
/* ---- Main Header ---- */
.main-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 16px rgba(0, 40, 71, 0.10);
    transition: box-shadow var(--transition);
}

.main-header.scrolled {
    box-shadow: 0 4px 28px rgba(0, 40, 71, 0.16);
}

.main-header.scrolled .logo img {
    max-height: 60px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 0;
    gap: 20px;
}

.logo img {
    max-height: 115px;
    width: auto;
}

/* ---- Navigation ---- */
.main-nav {
    display: flex;
    align-items: center;
    gap: 50px
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-list>li {
    position: relative;
}

.nav-list>li>a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 20px;
    padding: 10px 26px;
    font-weight: 400;
    color: var(--secondary);
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition);
}

.nav-list>li>a:hover,
.nav-list>li.active>a {
    color: var(--primary);

}

.nav-list>li.active>a {
    color: var(--primary);
}


/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    min-width: 270px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 999;
    padding: 6px 0;
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    color: var(--text);
    font-weight: 500;
    transition: background var(--transition), color var(--transition), padding var(--transition);
}

.main-nav.open .dropdown li a {
    color: #fff;
    padding: 5px 0px 5px 0px;
}
.main-nav.open .dropdown li {
    list-style: disc;
    margin-left: 25px;
    color: #fff;
    
}
.main-nav.open .dropdown li a:hover{background: none;} 

.dropdown li a:hover {
    background: rgba(31, 176, 228, 0.07);
    color: var(--primary);
    padding-left: 26px;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* CTA Button */
.btn-enquire {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.btn-enquire:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 176, 228, 0.35);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    /*background: var(--secondary);*/
    border-radius: 2px;
    transition: all var(--transition);
    background: #1eadde;
}

.mobile-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================
   HERO SLIDER
   ========================================== */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-slide {
    position: relative;
    min-height: 900px;
    display: flex !important;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), linear-gradient(90deg, rgba(9, 93, 157, 0.1) 0%, rgba(32, 181, 233, 0.1) 100%);
}
.hero-slide1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(102.78deg,#00000078 18.55%,#0000 95.73%) !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1040px;
    color: #fff;

    left: 15%;
}

.hero-content .hero-tag {
    display: inline-block;
    background: rgba(31, 176, 228, 0.20);
    border: 1px solid rgba(31, 176, 228, 0.50);
    color: var(--primary);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 80px;
    font-weight: 800;
    line-height: 92px;
    margin-bottom: 18px;
    color: #fff;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 32px;
    max-width: 755px;
    line-height: 38px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Header */
/* BTN */

.btn-primary {
    background: linear-gradient(90deg, #095D9D 0%, #20B5E9 100%);
    border-radius: 6px;
    color: #fff !important;
    padding: 14px 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;

}

.btn-primary:hover {
    background: linear-gradient(90deg, #20B5E9 0%, #095D9D 100%);
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 11px 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
}


.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* Owl Hero Dots */
.hero-slider-section .owl-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.hero-slider-section .owl-dot span {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    display: block;
    transition: all var(--transition);
}

.hero-slider-section .owl-dot.active span {
    background: #20B5E9;
    width: 28px;
    border-radius: 6px;
}

/* ==========================================
   SECTION COMMON
   ========================================== */
section {
    padding: 60px 0;
}

.section-light {
    /* background: var(--light-bg); */
    background: linear-gradient(295.06deg, rgba(242, 243, 245, 0.12) 70.37%, rgba(9, 93, 157, 0.12) 98.42%);
}

.section-dark {
    background: var(--secondary);
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

/* .section-header .sub-title {
    display: inline-block;
    color: var(--primary);
    font-weight: 600; font-size: 14px;
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 10px;
} */
/*.section-header h2 {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 800; color: var(--secondary);
    line-height: 1.25;
}*/

.mainTitle {
    font-size: 60px;
    font-weight: 600;

    line-height: 72px;
    color: #222;
    text-transform: none;
    margin-bottom: 15px;

}

.mainsubTitle {
    font-size: 50px;
    line-height: 62px;
}

.mainsubTitle span {
    display: block;
    color: #095D9D;
}

.title-font-gradient {
    background: linear-gradient(90deg, #095D9D 0%, #20B5E9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.sub-title {
    display: block;
    color: #222;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: normal;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.about-content .sub-title {
       color: #095D9D;}


.section-header.white h2 {
    color: #fff;
}

.section-header p {
    color: var(--text-light);
    margin: 12px auto 0;
    font-size: 18px;
    font-weight: 400;
}

.section-divider {
    width: 50px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    margin: 14px auto 0;
}

/* ==========================================
   CORE PRODUCTS SLIDER
   ========================================== */

.product-card {
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    /* box-shadow: 0 2px 16px rgba(0,40,71,0.07); */
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform var(--transition), box-shadow var(--transition);
    margin: 0px;
    min-height: 515px;
}

/*.owl-dots{position: absolute;}*/

/* Owl Hero Dots */
.product-image-slider .owl-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.product-image-slider .owl-dot span {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    display: block;
    transition: all var(--transition);
}

.product-image-slider .owl-dot.active span {
    background: #20B5E9;
    width: 28px;
    border-radius: 6px;
}


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

.product-card .prod-img {
    overflow: hidden;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

.product-card .prod-img img {
    width: 100%;
    height: 100%;
    object-fit: initial;
    transition: transform 0.5s ease;
}

.product-card:hover .prod-img img {
    transform: scale(1.06);
}

.product-card .prod-body {
    padding: 20px;
}

.product-card .prod-body h3 {
    font-size: 20px;
    font-weight: 500;
    color: #095D9D;
    margin-bottom: 8px;
    line-height: normal;
    font-family: "Poppins", sans-serif;
}

.product-card .prod-body p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: normal;
    font-weight: 400;


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

.product-card .btn-sm {
    display: inline-flex;
    align-items: center;
    color: #fff;
    padding: 6px 18px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
}

.product-card .btn-sm:hover {}

/* Products Owl Dots */
.products-slider .owl-dots,
.clients-slider .owl-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.products-slider .owl-dot span,
.clients-slider .owl-dot span {
    width: 16px;
    height: 16px;
    background: #C4C4C4;
    border-radius: 50%;
    display: block;
    transition: all var(--transition);
}

.products-slider .owl-dot.active span,
.clients-slider .owl-dot.active span {
    background: #20B5E9;
    width: 34px;
    border-radius: 50px;
    height: 16px;
}

/* ==========================================
   ABOUT / TRUSTED PARTNER SECTION
   ========================================== */
.about-section {
    /* padding: 80px 0; */
    padding: 25px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: -11px 20px 37.9px rgba(9, 93, 157, 0.31);
}

.about-img-wrap img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 14px;
}


/*.about-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(0, 40, 71, 0.88);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-img-badge .badge-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.about-img-badge .badge-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.4;
}*/

/* .about-content .sub-title {
    display: block; color: var(--primary);
    font-weight: 600; font-size: 13px;
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 10px;
} */
.about-content p {
    margin-bottom: 14px;
}

.about-features {
    margin: 24px 0;
}

.about-feature-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.about-feature-item .af-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(31, 176, 228, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    margin-top: 2px;
}

.about-feature-item .af-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 2px;
}

.about-feature-item .af-text p {
    font-size: 13.5px;
    color: var(--text-light);
    margin: 0;
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-section {
    /* background: linear-gradient(135deg, var(--secondary) 0%, #003a63 100%); */
    background: url("../images/stats-section-bg.png") no-repeat;
    background-size: cover;
    background-position: center center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
}

.stat-item .stat-icon {
    width: 90px;
    height: 90px;
    margin: 0px auto 18px auto;
}

.stat-item .stat-icon img {
    display: block;
    max-width: 100%;
}

.stat-item .stat-num {
    font-size: 54px;
    font-weight: 600;
    color: #FFF;
    line-height: 1;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-item .stat-num sup {
    font-size: 24px;
    margin-right: 2px;
}

.stat-item .stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255);
    font-weight: 400;
}

/* ==========================================
   WHY CHOOSE SECTION
   ========================================== */
.why-section {
    background: var(--light-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-img-wrap {
    border-radius: 14px;
   /* overflow: hidden;*/
    box-shadow: -11px 20px 37.9px rgba(9, 93, 157, 0.31);position: relative;
}

.why-img-wrap img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 14px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 28px;
}

.why-feature {
    display: flex;
    gap: 18px;
}

.why-feature .wf-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    /*background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 22px;*/
    flex-shrink: 0;
}

h4 {
    font-weight: 500;
    color: #222;
    margin-bottom: 15px;
    font-size: 22px;
    font-family: "Poppins", sans-serif;
}

.info-card {
    position: absolute;
    left: -3%;
    bottom: 14%;
    background: #fff;
    border-radius: 24px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
    width: min(360px, 78vw)
}

.info-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #d7f2e3;
    display: grid;
    place-items: center;
    flex-shrink: 0
}

.info-card .icon img {
    height: auto;
}

/* ==========================================
   CLIENTS SLIDER (BRANDS)
   ========================================== */
.brands-section {}

.brands-section .sub-title {
    text-align: center;
    margin-bottom: 15px;
}

.clients-slider .owl-stage {
    display: flex;
    align-items: center;
}

.brand-logo-item {
    padding: 0px 20px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 10px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer-cta-banner {
    padding-top: 0px;
}

.footer-cta-banner .container {
    background: linear-gradient(90deg, #0d5d9f 0%, #1d8bc5 55%, #2fb4e7 100%);
    border-radius: 38px;
    padding: 55px 40px 60px;
    box-shadow: 0 26px 38px rgba(16, 74, 109, .18)
}

.footer-cta-inner {
    max-width: 980px;
    margin: auto;
    text-align: center;
    color: #fff
}

.text-white {
    color: #fff;
}

.footer-cta-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.footer-cta-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.footer-cta-btns .btn-primary {
    background: #fff;
    color: var(--primary) !important;
    font-size: 20px;
}

.footer-cta-btns .btn-primary:hover {
    background: var(--secondary);
    color: #fff !important;
}

.footer-cta-btns .btn-outline-white {
    background: #095D9D;
    border: 0;
    font-size: 20px;
}

.footer-cta-btns .btn-outline-white:hover {
    color: #095D9D;
    background: #fff;
}



.footer-main {
    background: #002847;
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
    gap: 50px;
}

.footer-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 100px;
}

.footer-logo img {
    margin-bottom: 50px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #095D9D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all var(--transition);
}

.footer-social a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    font-size: 16px;
}

.footer-links a:hover {
    color: #1fb1e6;
}

.footer-contact-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 25px;
    color: #fff;
    align-items: flex-start;
}

.footer-contact-list .fc-icon {
    color: #20B5E9;
    width: 20px;
    min-width: 20px;
    margin-top: 3px;
}

.footer-contact-list a {
    color: #fff;
}

.footer-contact-list a:hover {
    color: #1fb1e6;
}

.footer-bottom {
    background: #002847;
}

.footer-bottom .container {
    display: flex;
    padding: 18px 0px;
    justify-content: space-between;
    border-top: 1px solid #ffffff4f;
}

.footer-bottom .container p {
    color: #fff;
    font-size: 14px;
    visibility: visible !important;
}

.footer-bottom .container p a:hover {
    color: #1fb1e6;
}

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 16px rgba(31, 176, 228, 0.40);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--transition);
    z-index: 998;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    color: #fff;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 26px;
    width: 48px;
    height: 48px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
    z-index: 997;
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.10);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
    color: #fff;
}








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

@media (max-width: 1600px) {
    .container {
        padding: 0px 35px;
    }
    .footer-cta-banner {
    padding: 0px 35px 30px 35px;
}
.footer-bottom .container {
    padding: 18px 35px;
}

    .logo img {
        max-height: 90px;
        width: auto;
    }

}


@media (max-width: 1400px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }



    .logo img {
        max-height: 90px;
        width: auto;
    }

    .nav-list>li>a {
        padding: 6px 10px;
        font-size: 18px;
    }

    section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .mainTitle {
        font-size: 44px;
        line-height: 52px;
    }

    .hero-slide {
        min-height: 650px;
    }

    .hero-content {
        left: 10%;
    }


}



@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }


    .logo img {
        max-height: 72px;
        width: auto;
    }

  
    section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .mainTitle {
        font-size: 38px;
        line-height: 51px;
    }

    .hero-slide {
        min-height: 650px;
    }

    .hero-content {
        left: 10%;
    }
  .main-nav {
   
    gap: 10px;
}

}

@media (max-width: 992px) {
    .container {
        padding: 0px 15px;
    }

    section {
        padding: 30px 0px;
    }

    .top-bar {
        display: none;
    }

    .logo img {
        max-height: 80px;
        width: auto;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #000;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
        transition: right 0.35s ease;
        overflow-y: auto;
        padding: 80px 20px 30px;
        z-index: 1000;    align-items: flex-start;
    }

 .main-nav.open {
    right: 0;   

}

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;width: 100%;
    }

    .nav-list>li {
        width: 100%;border-bottom: 1px solid;
    }

    .nav-list>li>a {
        padding: 12px 14px;
        border-radius: var(--radius);
color: #fff;
    }
.nav-list > li > a:hover, .nav-list > li.active > a  {
    color: #1eadde;
}
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(31, 176, 228, 0.05);
        margin: 4px 0 8px 12px;
        padding: 0;
        display: none;
    }

    .dropdown.open {
        display: block;
    }

    .has-dropdown>a i {
        margin-left: auto;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .header-cta {
        display: none;
    }

    .about-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-img-wrap img,
    .why-img-wrap img {
        height: 320px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-slide {
        min-height: 480px;
    }

    .hero-content {
        max-width: 100%;
        left: 0;
        padding: 30px 15px;
    }
.info-card{left: 10px;}



.hero-content h1 {
    font-size: 38px;
    line-height: 48px;
}

.hero-content p {
    font-size: 20px;
    line-height: 30px;
}

.mainTitle {
    font-size: 50px;
    line-height: 60px;
}



.footer-cta-banner {
    padding: 0px 15px 30px 15px;
}

.footer-cta-banner .container {
    padding: 20px;
}

.footer-cta-inner h2 {
    font-size: 30px;
    line-height: 42px;
}



}




@media (max-width: 768px) {

    .top-bar-left {
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-cta-btns {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        max-width: 100%;
        left: 0;
        padding: 30px 15px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 40px;
    }

    .hero-content p {
        font-size: 20px;
        line-height: 30px;
    }

    .mainTitle {
        font-size: 40px;
        line-height: 50px;
    }

    .info-card {
    display: none;
}


.footer-bottom .container {
    flex-direction: column;
    text-align: center;
    font-size: 15px;
    padding: 15px;
}


}





@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-bar-left {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-cta-btns .btn-primary {
        font-size: 18px;
        padding: 14px 15px;
    }


}






/* ---- Overlay for mobile nav ---- */
/*.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 999;
}

.nav-overlay.show {
    display: block;
}*/

/* ==========================================
   INNER PAGES - COMMON
   ========================================== */

/* ----- Page Banner ----- */
.page-banner {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    background-image:url('../images/slider-img1.jpg');
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(102.78deg, rgba(0,0,0,0.72) 20%, rgba(9,93,157,0.55) 100%);
}

.page-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.page-banner-content h1 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;justify-content: center;
}

.breadcrumb-nav a {
    color: rgba(255,255,255,0.8);
    transition: color var(--transition);
}

.breadcrumb-nav a:hover {
    color: #20B5E9;
}

.breadcrumb-nav span {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
}

.breadcrumb-nav span:last-child {
    color: #20B5E9;
    font-size: 16px;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */

/* Vision & Mission */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 10px;
}
.vm-grid-3{ grid-template-columns: 1fr 1fr 1fr; }

.vm-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.vm-card-white{background: #fff;}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(9,93,157,0.12);
}

.vm-card-blue {
    background: linear-gradient(135deg, #095D9D 0%, #20B5E9 100%);
    border-color: transparent;
}

.vm-card-blue h3,
.vm-card-blue p,
.vm-card-blue li {
    color: #fff !important;
}

.vm-card-blue .vm-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.vm-card-blue .vm-list li i {
    color: rgba(255,255,255,0.8);
}

.vm-icon {
    width: 70px;
    height: 70px;
    background: rgba(9,93,157,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #095D9D;
    margin-bottom: 22px;
}
.vm-card h3 {
    font-size: 28px;
    font-weight: 600;
    color: #222;
    margin-bottom: 14px;
}

.vm-card p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.vm-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vm-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;   
    color: #444;
}

.vm-list li i {
    color: #095D9D;
    margin-top: 6px;
    flex-shrink: 0;
}

/* Core Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 10px;
}

.value-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 28px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(9,93,157,0.12);
    border-color: #095D9D;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #095D9D 0%, #20B5E9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin: 0 auto 20px;
}

.value-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}

.value-card p {
    
}

/* ==========================================
   PRODUCTS PAGE
   ========================================== */
.product-detail-section {
    scroll-margin-top: 100px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.product-detail-grid-reverse {
    direction: rtl;
}

.product-detail-grid-reverse > * {
    direction: ltr;
}

.product-detail-img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: -8px 16px 40px rgba(9,93,157,0.20);
}

.product-detail-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    transition: transform 0.5s ease;
}

.product-detail-img:hover img {
    transform: scale(1.04);
}

.product-detail-content .sub-title {
    margin-bottom: 8px;
}

.product-detail-content .mainTitle {
    font-size: 42px;
    line-height: 52px;
    margin-bottom: 16px;
}

.product-detail-content p {
    color: #555;
    margin-bottom: 22px;
    font-size: 17px;
    line-height: 1.8;
}

.product-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;

}

.product-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: #444;
    line-height: 1.5;
}

.product-features-list li i {
    color: #095D9D;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 16px;
}

.product-detail-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background var(--transition), transform var(--transition);
}

.btn-whatsapp:hover {
    background: #128C49;
    transform: translateY(-2px);
}

/* Inner CTA Box */
.inner-cta-box {
    background: linear-gradient(135deg, #095D9D 0%, #20B5E9 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: #fff;
}

.inner-cta-box h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.inner-cta-box p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.inner-cta-box .btn-primary {
    background: #fff;
    color: #095D9D !important;
    font-size: 18px;
}

.inner-cta-box .btn-primary:hover {
    background: #002847;
    color: #fff !important;
}

/* ==========================================
   INDUSTRIES PAGE
   ========================================== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.industry-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 28px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(9,93,157,0.14);
    border-color: #095D9D;
}

.industry-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #095D9D 0%, #20B5E9 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 20px;
}

.industry-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
    font-family: "Poppins", sans-serif;
}

.industry-card p {
    
    margin-bottom: 18px;
}

.industry-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.industry-list li {
    display: flex;
    align-items: center;
    gap: 8px;
   
}

.industry-list li i {
    color: #095D9D;
    font-size: 13px;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 10px;
}

.contact-info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(9,93,157,0.12);
    border-color: #095D9D;
}

.cic-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #095D9D 0%, #20B5E9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin: 0 auto 18px;
}

/*.contact-info-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}
*/


.contact-info-card a {
    color: #095D9D;
    font-weight: 500;
}

.contact-info-card a:hover {
    color: #20B5E9;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-form-wrap {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(9,93,157,0.07);
}

.contact-form-wrap h3 {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    font-family: "Playfair Display", serif;
}

.contact-form-wrap > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
  
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #dde4ee;
    border-radius: 8px;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    color: #333;
    background: #fafbfc;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #095D9D;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(9,93,157,0.10);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    font-size: 17px;
    padding: 15px 36px;
    gap: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.form-success {
    background: #e8f8ef;
    border: 1px solid #4caf7d;
    color: #2e7d52;
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.contact-map-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-map {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(9,93,157,0.10);
}

.contact-quick-info {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
}

.contact-quick-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.business-hours {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.business-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: #555;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.business-hours li:last-child {
    border-bottom: none;
}

.btn-whatsapp-full {
    width: 100%;
    justify-content: center;
    border-radius: 8px;
    font-size: 16px;
    padding: 14px;
}

/* ==========================================
   FOOTER 4-column responsive
   ========================================== */
.footer-brand {
    padding-right: 20px;
}

/* ==========================================
   RESPONSIVE - INNER PAGES
   ========================================== */

@media (max-width: 1400px) {
    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        padding: 0;
    }
    .product-card .prod-body h3{font-size: 16px;}
}

@media (max-width: 1100px) {
    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }


    .page-banner-content h1 {
        font-size: 48px;
    }

    .product-detail-content .mainTitle {
        font-size: 34px;
        line-height: 44px;
    }

.btn-primary {   
    padding: 14px 20px;
   
}

}

@media (max-width: 992px) {
    .page-banner {
        min-height: 280px;
    }

    .page-banner-content h1 {
        font-size: 38px;
    }

  
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-detail-grid,
    .product-detail-grid-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 30px;
    }

    .product-detail-img img {
        height: 300px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: flex-start;
        padding: 0;
    }

    .inner-cta-box h2 {
        font-size: 32px;
    }
    .vm-grid-3{grid-template-columns: 1fr;}
}

@media (max-width: 768px) {
    .page-banner-content h1 {
        font-size: 30px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

  
    .contact-info-cards {
        grid-template-columns: 1fr 1fr;
    }

    .vm-card {
        padding: 28px 20px;
    }

    .contact-form-wrap {
        padding: 24px 20px;
    }

    .product-detail-content .mainTitle {
        font-size: 28px;
        line-height: 38px;
    }

    .inner-cta-box {
        padding: 40px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
        flex-direction: column;
        align-items: center;
    }


}

@media (max-width: 600px) {

.values-grid {
    grid-template-columns: 1fr;
}
  .vm-grid {
        grid-template-columns: 1fr;
    }

  .industries-grid {
        grid-template-columns: 1fr;
    }


}

@media (max-width: 480px) {
    .page-banner-content h1 {
        font-size: 26px;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .vm-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .product-detail-btns .btn-primary,
    .product-detail-btns .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

/* Products Grid Layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}


.wrap404 {
    text-align: center;
    padding: 40px 0
}

.wrap404 i {
    font-size: 120px
}

.wrap404 h2 {
    font-size: 60px;
    font-weight: 500;
    margin: 0;
    line-height: 72px
}

.wrap404 h4 {
    font-size: 40px;
    font-weight: 300;
    margin: 0;
    color: #ccc;line-height: 52px;padding: 10px 0px
}

.wrap404 p {
    font-size: 20px
}
