:root {
    --primary-cyan: #15CEF2;
    --dark-navy: #0B1F3A;
    --dark-card: #081B33;
    --text-muted: #6c757d;
    --white: #ffffff;
    --soft-bg: #F3F0F1;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-navy);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================================
   Typography
   ========================================= */
.h1-hero {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 112px;
    line-height: 1.1;
    margin-bottom: 0;
}

.h1-hero-sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 112px;
    line-height: 1;
    margin-top: -10px;
}

.h2-section {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 54px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    background: linear-gradient(90.06deg, #0D0804 12.5%, #61CDF4 142.81%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.gradient-text {
    background: linear-gradient(90.06deg, #0D0804 12.5%, #61CDF4 142.81%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.gradient-orange {
    background: linear-gradient(90.06deg, #0D0804 12.5%, #C75E11 142.81%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* =========================================
   Navbar
   ========================================= */
#mainNav {
    transition: all 0.4s ease;
    padding: 20px 0;
}

#mainNav.bg-dark-navy {
    background-color: var(--dark-navy) !important;
    padding: 10px 0;
}

img {
    max-width: 100%;
}

#mainNav .navbar-brand img {
    height: 124px;
    transition: all 0.4s ease;
}

#mainNav.bg-dark-navy .navbar-brand img {
    height: 60px;
}

.btn-cyan {
    background-color: var(--primary-cyan);
    color: black;
    padding: 14px 24px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-cyan:hover {
    background-color: #00b0d6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.4);
}

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
    min-height: 100vh;
    /* Fallback */
    min-height: 100dvh;
    /* Modern mobile fix */
    background-size: cover;
    background-position: center bottom;
    position: relative;
    padding-top: 80px;
    /* Space for navbar */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(4, 16, 33, 0.4) 0%, rgba(4, 16, 33, 0.8) 100%);
    z-index: 0;
} */

.z-1 {
    z-index: 1;
}

.hero-section p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.75;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

.hero-circle {
    position: absolute;
    left: -22px;
    top: 0;
    width: 127px;
    height: auto;
}

/* =========================================
   Banner Section
   ========================================= */
.banner-section {
    background-color: var(--primary-cyan);
    padding: 80px 0;
}

.letter-spacing-1 {
    letter-spacing: 0.1em;
}

.banner-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 26px;
    line-height: 1.6;
    letter-spacing: -0.02em;
    text-align: center;
}

.banner-section p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: -0.02em;
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* =========================================
   Why Choose Section
   ========================================= */
.custom-list {
    font-weight: 500;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    /* Adjust gap as needed to match previous look */
    row-gap: 0;
}

@media (max-width: 768px) {
    .custom-list {
        grid-template-columns: 1fr;
    }
}

.custom-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.custom-list .fa-diamond {
    color: var(--primary-cyan);
    font-size: 10px;
}

.why-choose-section p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.bg-dark-navy {
    background-color: var(--dark-navy);
}

/* =========================================
   Pillars Section
   ========================================= */
.pillars-header p {
    color: var(--text-muted);
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
}

.pillars-wrapper {
    background-color: var(--dark-navy);
    border-radius: 30px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.pillar-item {
    padding: 0 20px;
    height: 100%;
    position: relative;
}

.pillar-icon-box {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.pillar-icon-box img {
    width: 24px;
    height: auto;
}

.pillar-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
}

.pillar-item p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}



.view-more-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s ease;
    border-bottom: 1px solid white;
    padding-bottom: 2px;
}

.view-more-link:hover {
    opacity: 0.8;
}

.pillar-divider {
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, rgba(0, 210, 255, 0) 0%, rgba(0, 210, 255, 0.5) 50%, rgba(0, 210, 255, 0) 100%);
}

/* =========================================
   Products Section
   ========================================= */
.bg-light-soft {
    background-color: var(--soft-bg);
}

.products-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.product-card-new {
    background-color: var(--dark-navy);
    border-radius: 30px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
	opacity: 0.6;
}
.swiper-slide-active .product-card-new {
    opacity: 1;
}
.product-header {
    margin-bottom: 30px;
    padding-left: 10px;
}

.product-body {
    background: white;
    border-radius: 25px;
    padding: 40px;
    color: var(--dark-navy);
    flex-grow: 1;
}

.products-header p {
    color: var(--text-muted);
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

.product-body p {
    margin-bottom: 1.5rem;
}

.product-expand-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.875em;
}

.product-expand-content p:last-child {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 0.875em;
}

.product-expand-content {
    animation: fadeIn 0.5s ease;
}

.product-expand-content h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-navy);
}

.product-expand-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
    font-size: 0.875em;
    color: var(--text-muted);
}

.product-expand-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.product-expand-content ul li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--dark-navy);
    font-weight: bold;
}

.product-expand-content a {
    color: var(--dark-navy);
    text-decoration: underline !important;
}

/* --- CMS/Editor Content Safety Styles --- */

/* Headings: scale down to fit card context */
.product-expand-content h1,
.product-expand-content h2,
.product-expand-content h3,
.product-expand-content h4,
.product-expand-content h5 {
    color: var(--dark-navy);
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-expand-content h1 {
    font-size: 1.5rem;
}

.product-expand-content h2 {
    font-size: 1.35rem;
}

.product-expand-content h3 {
    font-size: 1.2rem;
}

.product-expand-content h4 {
    font-size: 1.1rem;
}

.product-expand-content h5 {
    font-size: 1rem;
}

/* Ordered Lists */
.product-expand-content ol {
    padding-left: 20px;
    margin-bottom: 1.5rem;
    font-size: 0.875em;
    color: var(--text-muted);
}

.product-expand-content ol li {
    margin-bottom: 10px;
    padding-left: 5px;
}

/* Images */
.product-expand-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 1rem 0;
}

/* Blockquotes */
.product-expand-content blockquote {
    border-left: 4px solid var(--primary-cyan);
    padding-left: 1rem;
    margin-left: 0;
    margin-right: 0;
    font-style: italic;
    color: var(--dark-navy);
    background: rgba(21, 206, 242, 0.05);
    /* very light cyan tint */
    padding: 1rem;
    border-radius: 0 10px 10px 0;
}

/* Inline formatting */
.product-expand-content strong,
.product-expand-content b {
    font-weight: 700;
    color: var(--dark-navy);
}

.product-expand-content em,
.product-expand-content i {
    font-style: italic;
}

.product-expand-content hr {
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 1.5rem 0;
}

.list-check li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.list-check li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--dark-navy);
    font-weight: bold;
}

.swiper-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
    border: 1px solid #ddd;
    background: white;
    color: #555;
}

.swiper-nav-btn:hover {
    background-color: var(--primary-cyan);
    color: black;
    border-color: var(--primary-cyan);
    box-shadow: 0 4px 15px rgba(21, 206, 242, 0.4);
}

.swiper-nav-btn.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8f9fa;
    border-color: #ddd;
    box-shadow: none;
}

.swiper-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.product-swiper {
    padding: 20px 0 60px 0;
    overflow: visible !important;
}

.product-swiper .swiper-slide {
    width: 60%;
    height: auto !important;
}

/* =========================================
   Contact Section
   ========================================= */
.contact-box {
    padding: 20px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-navy);
}

.custom-input-group > p {
    background-color: white;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.custom-input-group .input-icon {
    color: #5E5B58;
    font-size: 18px;
    margin-right: 15px;
}

.custom-input-group .form-control {
    border: none;
    padding: 0;
    background: transparent;
    font-size: 16px;
    color: #555;
    box-shadow: none !important;
}

.custom-input-group .form-control::placeholder {
    color: #5E5B58;
    font-weight: 400;
}

.custom-textarea {
    background-color: white;
    border-radius: 20px;
    border: none;
    padding: 20px;
    resize: none;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}


/* =========================================
   Footer
   ========================================= */
.footer {
    position: relative;
    overflow: hidden;
}

.footer-vector {
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    max-width: 100%;
    /* Adjusted for better text readability if it overlaps */
}

.footer-space {
    padding-bottom: 0;
}

.footer-border {
    width: 100%;
    height: auto;
    margin: 10px 0;
    margin-top: 60px;
}

.hover-cyan:hover {
    color: var(--primary-cyan) !important;
    opacity: 1 !important;
}

.copyright-text {
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

/* =========================================
   MEDIA QUERIES (Responsive Design)
   ========================================= */

/* Large Desktop (Max 1400px) */
@media (max-width: 1400px) {

    .h1-hero,
    .h1-hero-sub {
        font-size: 96px;
    }
}

/* Standard Desktop / Landscape Tablet (Max 1200px) */
@media (max-width: 1200px) {

    .h1-hero,
    .h1-hero-sub {
        font-size: 80px;
    }

    .h2-section {
        font-size: 42px;
    }

    .pillar-divider {
        display: none;
        /* Hide dividers earlier if spacing gets tight */
    }
}

/* Tablet / Laptop (Max 991px) */
@media (max-width: 991px) {

    .h1-hero,
    .h1-hero-sub {
        font-size: 64px;
    }

    .h2-section {
        font-size: 38px;
    }

    .product-swiper .swiper-slide {
        width: 85%;
    }

    .pillars-wrapper {
        padding: 50px 30px;
    }

    .pillar-item {
        margin-bottom: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 30px;
    }

    .col-lg-4:last-child .pillar-item {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    #mainNav .navbar-brand img {
        height: 80px;
    }

    .navbar-toggler {
        border: none;
        color: white;
        /* Ensure toggler is visible if bg is dark */
    }

    .hero-circle {
        width: 100px;
        left: -15px;
    }
}
	
    form div>div.col-md-6>p {
        margin: 0;
    }
/* Mobile Devices (Max 768px) */
@media (max-width: 768px) {

    .h1-hero,
    .h1-hero-sub {
        font-size: 48px;
    }


    .h2-section {
        font-size: 32px;
    }

    .hero-section p {
        font-size: 16px;
    }

    .banner-heading,
    .banner-section p {
        font-size: 20px;
        line-height: 1.4;
    }

    .product-swiper .swiper-slide {
        width: 95%;
    }

    .product-card-new {
        padding: 30px 20px;
    }

    .product-body {
        padding: 25px;
    }

    .pillars-wrapper {
        padding: 40px 20px;
    }

    .pillar-item {
        padding: 0;
    }

    .contact-box {
        padding: 0;
    }

    /* Adjust navbar transition for mobile */
    #mainNav.bg-dark-navy .navbar-brand img {
        height: 50px;
    }

    /* Center align footer on mobile */
    .footer {
        text-align: center;
    }

    .footer .row.align-items-center {
        flex-direction: column;
        gap: 2rem;
    }

    .footer .d-flex.align-items-center {
        justify-content: center;
    }

    .hero-circle {
        width: 70px;
        left: -10px;
        top: 5px;
    }
}

/* Small Mobile (Max 576px) */
@media (max-width: 576px) {

    .h1-hero,
    .h1-hero-sub {
        font-size: 36px;
    }

    .h2-section {
        font-size: 28px;
    }

    .banner-section {
        padding: 50px 0;
    }

    .btn-cyan {
        padding: 12px 20px;
        font-size: 14px;
    }

    .product-button-wrapper {
        flex-direction: column;
    }

    .custom-textarea {
        padding: 15px;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
    }

    /* Adjust product slider nav buttons */
    .swiper-nav-btn {
        width: 40px;
        height: 40px;
    }

    /* Reduce side padding for containers to maximize space */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Ensure no overflow on very small devices */
    .product-card-new {
        padding: 25px 15px;
    }

    .product-body {
        padding: 20px 15px;
    }

    .display-6 {
        font-size: 1.6rem;
        /* Standardize Bootstrap display font */
    }
}

/* wrapper becomes the button container */
.contact-btn-wrap{
  position: relative;
  display: inline-block;
}

/* your visual button (SPAN) */
.contact-btn{
  padding: 15px 50px 15px 30px; /* extra right padding for icon */
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(177.74deg, #A2E6FF -2.22%, #15CEF2 57.06%);
  border: 2px solid #FFFFFF3B;
  color: black;
  transition: all 0.3s ease;
  border-radius: 30px;
  position: relative;
}

/* icon on the SPAN (works 100%) */
.contact-btn::after{
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
}

/* hover effect when user hovers wrapper */
.contact-btn-wrap:hover .contact-btn{
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(162, 230, 255, 0.4);
}

/* REAL CF7 SUBMIT: invisible but clickable, covers entire button */
.contact-btn-wrap .contact-submit{
  position: absolute !important;
  inset: 0 !important;          /* top:0 right:0 bottom:0 left:0 */
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  cursor: pointer !important;
  z-index: 5 !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.pillars-wrapper .row > [class*="col-"]:last-child .pillar-divider{
  display: none !important;
}

/* Disable clicks on ALL slides by default */
.product-swiper .swiper-slide .view-more-product {
  pointer-events: none;
  opacity: 0.4;
  cursor: default;
}

/* Enable ONLY centered(active) slide */
.product-swiper .swiper-slide-active .view-more-product {
  pointer-events: auto;
  opacity: 1;
  cursor: pointer;
}

/* Optional: also block expanded content interaction */
.product-swiper .swiper-slide:not(.swiper-slide-active) .product-expand-content {
  pointer-events: none;
}

