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


 /* DESIGN SYSTEM TOKENS           */


:root{
    --max-w:  1240px; /* max content width — prevents distortion on wide screens */
    --pad-v:  100px;  /* section vertical padding (top & bottom) */
    --pad-h:  100px;  /* container horizontal padding (left & right gutters) */
}

/* 1200px breakpoint */
@media(max-width:1200px){
    :root{ --pad-v:80px; --pad-h:80px; }
}

/* 1080px breakpoint */
@media(max-width:1080px){
    :root{ --pad-v:80px; --pad-h:60px; }
}

/* 800px breakpoint */
@media(max-width:800px){
    :root{ --pad-v:80px; --pad-h:48px; }
}

/* 360px breakpoint */
@media(max-width:360px){
    :root{ --pad-v:48px; --pad-h:16px; }
}

body{
    font-family:'Inter',sans-serif;
    background:#f7f7f7;
    color:#111827;
}


/* UNIFIED CONTAINER             */
/* All content sections share this — max 1240px, centred, responsive gutters */


.container{
    max-width:var(--max-w);
    width:100%;
    margin:0 auto;
    padding-left:var(--pad-h);
    padding-right:var(--pad-h);
}

/* HEADER */

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

/* STICKY HEADER */

/* The sticky bar sits above the normal header and slides in from top */
.sticky-header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:1000;
    background:white;
    border-bottom:1px solid #ececec;
    box-shadow:0 2px 16px rgba(0,0,0,0.08);
    transform:translateY(-100%);
    transition:transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
    opacity:0;
    pointer-events:none;
}

/* When visible class is added via JS */
.sticky-header.visible{
    transform:translateY(0);
    opacity:1;
    pointer-events:auto;
}

.nav{
    height:72px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo-top{
    font-size:20px;
    font-weight:800;
    color:#a40000;
    line-height:1;
}

.logo-bottom{
    font-size:10px;
    font-weight:700;
    letter-spacing:1px;
    margin-top:2px;
}

.menu{
    display:flex;
    align-items:center;
    gap:34px;
}

.menu a{
    text-decoration:none;
    color:#374151;
    font-size:14px;
    font-weight:500;
}

.dropdown span{
    font-size:12px;
    margin-left:4px;
}

.contact-btn{
    background:#243b8f;
    color:white !important;
    padding:11px 18px;
    border-radius:8px;
    font-weight:600;
}

/* Logo image style for header, sticky header, and footer */
.logo-img {
  max-width: 160px;
  height: 48px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  padding: 4px 0;
}

/* Footer logo can be a bit larger and centered */
.footer-logo-img {
  max-width: 200px;
  height: 56px;
  margin: 0 auto;
  display: block;
}

/* Responsive adjustments for logo */
@media (max-width: 600px) {
  .logo-img {
    max-width: 120px;
    height: 36px;
  }
  .footer-logo-img {
    max-width: 140px;
    height: 40px;
  }
}

/* MAIN */

.main-section{
    padding-top:26px;
}

.breadcrumb{
    color:#8a8a8a;
    font-size:13px;
    margin-bottom:24px;
}

.breadcrumb span{
    margin:0 6px;
}

.product-layout{
    display:flex;
    gap:52px;
    align-items:flex-start;
}

/* LEFT */

.gallery{
    width:470px;
}

.main-image-wrapper{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    height:380px;
    background:white;
    cursor:zoom-in;
}

.main-image{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 0.4s ease;
}

/* ZOOM PREVIEW OVERLAY */

/* The zoom lens that follows the cursor on the main image */
.zoom-lens{
    display:none;
    position:absolute;
    width:120px;
    height:120px;
    border:2px solid rgba(36,59,143,0.6);
    border-radius:4px;
    background:rgba(36,59,143,0.08);
    pointer-events:none;
    z-index:10;
    transform:translate(-50%,-50%);
}

/* The large zoom result panel shown beside main image */
.zoom-result{
    display:none;
    position:absolute;
    top:0;
    left:calc(100% + 18px);
    width:340px;
    height:380px;
    border-radius:18px;
    border:1px solid #ececec;
    background-repeat:no-repeat;
    background-color:white;
    box-shadow:0 12px 40px rgba(0,0,0,0.12);
    z-index:20;
    overflow:hidden;
}

/* Keep zoom result inside viewport on smaller screens */
@media(max-width:1200px){
    .zoom-result{
        left:auto;
        right:0;
        top:calc(100% + 12px);
        width:100%;
        height:280px;
    }
}

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border-radius:50%;
    border:none;
    background:white;
    box-shadow:0 3px 10px rgba(0,0,0,0.12);
    cursor:pointer;
    font-size:18px;
    z-index:5;
}

.left{
    left:14px;
}

.right{
    right:14px;
}

.thumbs{
    display:flex;
    gap:12px;
    margin-top:18px;
}

.thumb{
    width:56px;
    height:56px;
    border-radius:10px;
    overflow:hidden;
    background:white;
    border:2px solid transparent;
    cursor:zoom-in;
    position:relative;
}

.thumb.active{
    border:2px solid #243b8f;
}

.thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 0.3s ease;
}

/* Thumb zoom: a floating preview card above the thumbnails */
.thumb-zoom-preview{
    display:none;
    position:fixed;
    width:220px;
    height:220px;
    border-radius:14px;
    overflow:hidden;
    border:2px solid #ececec;
    box-shadow:0 12px 40px rgba(0,0,0,0.18);
    z-index:500;
    pointer-events:none;
    background:white;
}

.thumb-zoom-preview img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* RIGHT */

.product-info{
    flex:1;
    padding-top:8px;
}

.badges{
    display:flex;
    gap:18px;
    margin-bottom:18px;
}

.badge{
    display:flex;
    align-items:center;
    gap:7px;
    font-size:13px;
    color:#6b7280;
}

.badge-icon{
    width:24px;
    height:24px;
    object-fit:contain;
}


.product-info h1{
    font-size:50px;
    line-height:1.1;
    font-weight:800;
    max-width:620px;
    margin-bottom:26px;
}

/* FEATURES */

.features{
    list-style:none;
    margin-bottom:30px;
}

.features li{
    position:relative;
    padding-left:24px;
    margin-bottom:14px;
    color:#4b5563;
    font-size:15px;
}

.features li::before{
    content:"";
    width:7px;
    height:7px;
    border-radius:50%;
    background:#2563eb;
    position:absolute;
    left:0;
    top:8px;
}

/* PRICE BOX */

.price-box{
    width:420px;
    background:white;
    border-radius:14px;
    padding:20px;
    border:1px solid #ececec;
}

.price-label{
    font-size:13px;
    color:#6b7280;
    margin-bottom:8px;
}

.price{
    font-size:24px;
    font-weight:700;
    margin-bottom:14px;
}

.mini-tags{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    margin-bottom:14px;
}

.tag{
    font-size:12px;
    padding:7px 10px;
    border-radius:8px;
    font-weight:500;
}

.yellow{
    background:#fff4cf;
    color:#8b6b00;
}

.peach{
    background:#ffe6d8;
    color:#b45309;
}

.cert-text{
    font-size:12px;
    color:#6b7280;
}

/* BUTTONS */

.buttons{
    display:flex;
    gap:14px;
    margin-top:26px;
}

.primary-btn{
    background:#243b8f;
    color:white;
    border:none;
    height:48px;
    padding:0 24px;
    border-radius:10px;
    font-weight:600;
    cursor:pointer;
}

.secondary-btn{
    height:48px;
    padding:0 20px;
    border-radius:10px;
    border:1px solid #d1d5db;
    background:white;
    font-weight:600;
    cursor:pointer;
}

.secondary-btn span{
    margin-left:6px;
}

/* TRUSTED */

.trusted-section{
    margin-top:70px;
    text-align:center;
}

.trusted-section p{
    color:#9ca3af;
    font-size:13px;
    margin-bottom:28px;
}

.logos{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.logo-box{
    opacity:0.75;
}

.logo-box h4{
    font-size:18px;
    letter-spacing:1px;
}

.logo-box span{
    font-size:10px;
    color:#6b7280;
}

/* RESPONSIVE */

@media(max-width:1000px){

    .product-layout{
        flex-direction:column-reverse;
    }

    .gallery{
        width:100%;
    }

    .product-info h1{
        font-size:38px;
    }

    .price-box{
        width:100%;
    }
}

@media(max-width:768px){

    .menu{
        gap:16px;
    }

    .product-info h1{
        font-size:32px;
    }

    .buttons{
        flex-direction:column;
    }

    .logos{
        justify-content:center;
    }
}


/* TECHNICAL SPECIFICATIONS */


.tech-section{
    margin-top:var(--pad-v);
    background:#071327;
    padding:var(--pad-v) 0;
}

.tech-container{
    max-width:var(--max-w);
    width:100%;
    margin:0 auto;
    padding-left:var(--pad-h);
    padding-right:var(--pad-h);
}

.tech-section h2{
    color:white;
    font-size:48px;
    font-weight:800;
    margin-bottom:16px;
    line-height:1.1;
}

.tech-subtitle{
    color:#94a3b8;
    font-size:15px;
    line-height:1.7;
    max-width:720px;
    margin-bottom:40px;
}

/* TABLE */

.table-wrapper{
    width:100%;
    overflow-x:auto;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.08);
    background:rgba(255,255,255,0.03);
}

.spec-table{
    width:100%;
    border-collapse:collapse;
}

.spec-table thead{
    background:rgba(255,255,255,0.08);
}

.spec-table th{
    color:#dbe4f0;
    text-align:left;
    font-size:12px;
    font-weight:600;
    letter-spacing:0.5px;
    padding:16px 22px;
}

.spec-table td{
    color:#d1d5db;
    font-size:14px;
    padding:18px 22px;
    border-top:1px solid rgba(255,255,255,0.06);
}

.spec-table tr:hover{
    background:rgba(255,255,255,0.02);
}

/* BUTTON */

.datasheet-btn-wrapper{
    display:flex;
    justify-content:center;
    margin-top:34px;
}

.datasheet-btn{
    background:transparent;
    border:1px solid rgba(255,255,255,0.25);
    color:white;
    padding:14px 24px;
    border-radius:12px;
    font-size:14px;
    font-weight:500;
    cursor:pointer;
    transition:0.3s;
}

.datasheet-btn:hover{
    background:white;
    color:#071327;
}

/* RESPONSIVE — padding is now handled by --pad-v / --pad-h tokens */

@media(max-width:768px){

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

    .tech-subtitle{
        font-size:14px;
    }

    .spec-table th,
    .spec-table td{
        min-width:240px;
    }
}


/* FEATURES SECTION */


.features-section{
    background:#f6f6f6;
    padding:var(--pad-v) 0;
}

.features-container{
    max-width:var(--max-w);
    width:100%;
    margin:0 auto;
    padding-left:var(--pad-h);
    padding-right:var(--pad-h);
}

/* heading */

.features-heading{
    margin-bottom:48px;
}

.features-heading h2{
    font-size:52px;
    font-weight:800;
    color:#111827;
    margin-bottom:18px;
    line-height:1.1;
}

.features-heading p{
    max-width:720px;
    color:#6b7280;
    font-size:15px;
    line-height:1.8;
}

/* grid */

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

/* card */

.feature-card{
    background:#fafafa;
    border:1px solid #dddddd;
    border-radius:14px;
    padding:24px;
    transition:0.3s;
}

.feature-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
}

.feature-icon{
    width:38px;
    height:38px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#233b90;
    font-size:20px;
    margin-bottom:18px;
}

.feature-card h3{
    font-size:18px;
    font-weight:700;
    color:#111827;
    line-height:1.4;
    margin-bottom:14px;
}

.feature-card p{
    color:#6b7280;
    font-size:14px;
    line-height:1.8;
}

/* button */

.feature-btn-wrapper{
    display:flex;
    justify-content:center;
    margin-top:42px;
}

.feature-btn{
    background:#243b8f;
    color:white;
    border:none;
    padding:14px 28px;
    border-radius:10px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.feature-btn:hover{
    background:#1d3176;
}

/* RESPONSIVE — padding handled by tokens */

@media(max-width:992px){

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

    .features-heading h2{
        font-size:40px;
    }
}

@media(max-width:768px){

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

    .features-heading h2{
        font-size:32px;
    }

    .features-heading p{
        font-size:14px;
    }
}



/* FAQ SECTION */


.faq-section{
    background:#f7f7f7;
    padding:var(--pad-v) 0;
}

.faq-container{
    max-width:var(--max-w);
    width:100%;
    margin:0 auto;
    padding-left:var(--pad-h);
    padding-right:var(--pad-h);
}

/* heading */

.faq-heading{
    margin-bottom:40px;
}

.faq-heading h2{
    font-size:52px;
    font-weight:800;
    color:#111827;
    line-height:1.1;
}

.faq-heading h2 span{
    color:#233b90;
}

/* accordion */

.faq-wrapper{
    display:flex;
    flex-direction:column;
    gap:14px;
}

/* faq item */

.faq-item{
    background:white;
    border:1px solid #e5e7eb;
    border-radius:12px;
    overflow:hidden;
}

.faq-question{
    width:100%;
    border:none;
    background:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 24px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    color:#111827;
    text-align:left;
}

.faq-icon{
    font-size:18px;
    color:#6b7280;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.35s ease;
}

.faq-answer p{
    padding:0 24px 24px;
    color:#6b7280;
    font-size:14px;
    line-height:1.8;
}

/* active */

.faq-item.active .faq-answer{
    max-height:200px;
}

.faq-item.active .faq-icon{
    color:#233b90;
}

/* catalogue box */

.catalogue-box{
    margin-top:42px;
    background:#f1f1f1;
    border:1px solid #dddddd;
    border-radius:14px;
    padding:28px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
}

.catalogue-left h3{
    font-size:32px;
    font-weight:700;
    color:#111827;
    margin-bottom:10px;
}

.catalogue-left p{
    color:#6b7280;
    font-size:14px;
}

.catalogue-right{
    display:flex;
    align-items:center;
    gap:14px;
    min-width:420px;
}

.catalogue-right input{
    flex:1;
    height:48px;
    border:1px solid #d1d5db;
    border-radius:8px;
    padding:0 16px;
    font-size:14px;
    outline:none;
    background:white;
}

.catalogue-right input:focus{
    border-color:#233b90;
}

.catalogue-right button{
    height:48px;
    padding:0 26px;
    background:#243b8f;
    color:white;
    border:none;
    border-radius:8px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.catalogue-right button:hover{
    background:#1d3176;
}

/* RESPONSIVE — padding handled by tokens */

@media(max-width:992px){

    .catalogue-box{
        flex-direction:column;
        align-items:flex-start;
    }

    .catalogue-right{
        width:100%;
        min-width:unset;
    }
}

@media(max-width:768px){

    .faq-heading h2{
        font-size:34px;
    }

    .faq-question{
        font-size:14px;
        padding:18px;
    }

    .faq-answer p{
        padding:0 18px 18px;
    }

    .catalogue-left h3{
        font-size:24px;
    }

    .catalogue-right{
        flex-direction:column;
    }

    .catalogue-right input,
    .catalogue-right button{
        width:100%;
    }
}


/* APPLICATIONS SECTION */


.applications-section{
    background:#f7f7f7;
    padding:var(--pad-v) 0;
    overflow:hidden;
}

.applications-container{
    max-width:var(--max-w);
    width:100%;
    margin:0 auto;
    padding-left:var(--pad-h);
    padding-right:var(--pad-h);
}

/* top */

.applications-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:30px;
    margin-bottom:42px;
}

.applications-heading h2{
    font-size:52px;
    font-weight:800;
    color:#111827;
    line-height:1.1;
    margin-bottom:18px;
}

.applications-heading p{
    max-width:650px;
    color:#6b7280;
    font-size:15px;
    line-height:1.8;
}

/* buttons */

.applications-nav{
    display:flex;
    gap:14px;
    margin-top:10px;
}

.app-btn{
    width:54px;
    height:54px;
    border-radius:50%;
    border:1px solid #d1d5db;
    background:white;
    font-size:22px;
    cursor:pointer;
    transition:0.3s;
}

.app-btn:hover{
    background:#243b8f;
    color:white;
    border-color:#243b8f;
}

/* slider */

.applications-slider{
    overflow:hidden;
}

.applications-track{
    display:flex;
    gap:22px;
    transition:0.4s ease;
}

/* card */

.application-card{
    min-width:360px;
    height:430px;
    border-radius:22px;
    overflow:hidden;
    position:relative;
    flex-shrink:0;
    background:#000;
}

.application-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.application-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.78),
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.05)
    );
}

.application-content{
    position:absolute;
    left:28px;
    right:28px;
    bottom:28px;
    z-index:2;
}

.application-content h3{
    color:white;
    font-size:32px;
    font-weight:700;
    margin-bottom:14px;
    line-height:1.1;
}

.application-content p{
    color:rgba(255,255,255,0.82);
    font-size:14px;
    line-height:1.8;
}

/* RESPONSIVE — padding handled by tokens */

@media(max-width:992px){

    .applications-heading h2{
        font-size:40px;
    }

    .application-card{
        min-width:320px;
        height:400px;
    }
}

@media(max-width:768px){

    .applications-top{
        flex-direction:column;
    }

    .applications-heading h2{
        font-size:34px;
    }

    .applications-heading p{
        font-size:14px;
    }

    .applications-nav{
        margin-top:0;
    }

    .application-card{
        min-width:280px;
        height:360px;
    }

    .application-content h3{
        font-size:26px;
    }
}



/* PROCESS SECTION */


.process-section{
    background:#f7f7f7;
    padding:var(--pad-v) 0;
}

.process-container{
    max-width:var(--max-w);
    width:100%;
    margin:0 auto;
    padding-left:var(--pad-h);
    padding-right:var(--pad-h);
}

/* heading */

.process-heading{
    text-align:center;
    margin-bottom:46px;
}

.process-heading h2{
    font-size:52px;
    font-weight:800;
    color:#111827;
    line-height:1.1;
    margin-bottom:20px;
}

.process-heading p{
    max-width:760px;
    margin:auto;
    color:#6b7280;
    font-size:15px;
    line-height:1.8;
}

/* process box */

.process-box{
    background:#f5f5f5;
    border:1px solid #dcdcdc;
    border-radius:18px;
    padding:18px;
}

/* tabs */

.process-tabs{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.process-tab{
    border:none;
    padding:11px 18px;
    border-radius:999px;
    background:#ececec;
    color:#374151;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.process-tab.active{
    background:#243b8f;
    color:white;
}

/* content */

.process-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:42px;
    align-items:center;
}

/* left */

.process-left h3{
    font-size:38px;
    font-weight:700;
    color:#111827;
    line-height:1.2;
    margin-bottom:18px;
}

.process-left p{
    color:#6b7280;
    font-size:15px;
    line-height:1.9;
    margin-bottom:22px;
}

.process-left ul{
    list-style:none;
}

.process-left ul li{
    position:relative;
    padding-left:22px;
    margin-bottom:14px;
    color:#111827;
    font-size:14px;
}

.process-left ul li::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:#243b8f;
    position:absolute;
    left:0;
    top:8px;
}

/* image */

.process-image-slider{
    position:relative;
    border-radius:18px;
    overflow:hidden;
    height:360px;
}

.process-image-slider img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* arrows */

.process-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,0.9);
    font-size:22px;
    cursor:pointer;
    z-index:5;
    transition:0.3s;
}

.process-arrow:hover{
    background:#243b8f;
    color:white;
}

.left-process{
    left:18px;
}

.right-process{
    right:18px;
}

/* RESPONSIVE — padding handled by tokens */

@media(max-width:992px){

    .process-content{
        grid-template-columns:1fr;
    }

    .process-left h3{
        font-size:32px;
    }
}

@media(max-width:768px){

    .process-heading h2{
        font-size:34px;
    }

    .process-heading p{
        font-size:14px;
    }

    .process-left h3{
        font-size:28px;
    }

    .process-tabs{
        gap:8px;
    }

    .process-tab{
        font-size:12px;
        padding:10px 14px;
    }

    .process-image-slider{
        height:280px;
    }
}

/* SHARED UTILITIES */
.section-heading-centered {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading-centered h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-heading-centered p {
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials-section {
    padding: var(--pad-v) 0;
    background-color: #fcfcfc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: white;
    border: 1px solid #efefef;
    border-radius: 16px;
    padding: 35px;
    position: relative;
    transition: 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.quote-icon {
    font-size: 50px;
    color: #243b8f;
    font-family: serif;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
    opacity: 0.8;
}

.testimonial-text {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 25px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #e5e7eb; /* Placeholder for image */
}

.user-name {
    font-weight: 700;
    font-size: 14px;
}

.user-title {
    font-size: 12px;
    color: #9ca3af;
}

/* PORTFOLIO */
.portfolio-section {
    padding: var(--pad-v) 0;
    background-color: #f7f7f7;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.portfolio-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.portfolio-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.portfolio-info p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
    height: 65px; /* Ensures alignment */
}

.portfolio-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.learn-more-btn {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #243b8f;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.learn-more-btn:hover {
    background: #243b8f;
    color: white;
}

/* CTA BANNER */
.cta-banner {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.blue-text {
    color: #243b8f;
}

.cta-text p {
    color: #64748b;
    font-size: 15px;
}

.expert-btn {
    background: #243b8f;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .testimonials-grid, .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .testimonials-grid, .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .section-heading-centered h2 {
        font-size: 28px;
    }
}


/* RESOURCES SECTION */
.resources-section {
    padding: var(--pad-v) 0;
    background-color: #f9fafb;
}

.resources-list {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.resource-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #f3f4f6;
}

.resource-item:last-child {
    border-bottom: none;
}

.resource-item span {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.download-link {
    font-size: 13px;
    color: #243b8f;
    text-decoration: none;
    font-weight: 600;
}

.download-link:hover {
    text-decoration: underline;
}

/* CONTACT CTA SECTION */
.contact-cta-section {
    padding: var(--pad-v) 0;
}

.cta-blue-box {
    background: #1e293b; /* Dark blue background */
    border-radius: 24px;
    padding: 60px;
    display: flex;
    gap: 50px;
    align-items: center;
    color: white;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-footer-info {
    font-size: 13px;
    color: #94a3b8;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* Form Card */
.cta-form-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    width: 400px;
    color: #1e293b;
}

.cta-form-card h3 {
    font-size: 16px;
    margin-bottom: 20px;
}

.cta-form-card input, 
.cta-form-card select {
    width: 100%;
    height: 45px;
    margin-bottom: 15px;
    padding: 0 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
}

.phone-input {
    display: flex;
    gap: 10px;
}

.phone-input select {
    width: 80px;
}

.submit-btn {
    width: 100%;
    height: 48px;
    background: #27272a;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* FOOTER */
.main-footer {
    padding: 60px 0 30px;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.footer-logo-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 60px;
}

.footer-tagline {
    font-size: 14px;
    color: #64748b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: #1e293b;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    font-size: 14px;
    color: #64748b;
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: #243b8f;
}

.contact-links li {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.copyright-bar {
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #94a3b8;
}

.bottom-links a {
    margin-left: 20px;
    color: #94a3b8;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .cta-blue-box {
        flex-direction: column;
        padding: 40px;
    }
    .cta-form-card {
        width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}



/* DATASHEET MODAL               */


/* Backdrop overlay */
.modal-overlay{
    display:none;               /* hidden by default */
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.45);
    z-index:2000;
    align-items:center;
    justify-content:center;
    /* smooth fade-in */
    animation:modalFadeIn 0.25s ease forwards;
}

/* Show state toggled by JS */
.modal-overlay.active{
    display:flex;
}

/* Fade-in keyframe */
@keyframes modalFadeIn{
    from{ opacity:0; }
    to  { opacity:1; }
}

/* Modal card */
.modal-box{
    background:white;
    border-radius:16px;
    padding:36px 32px 32px;
    width:100%;
    max-width:480px;
    position:relative;
    box-shadow:0 24px 60px rgba(0,0,0,0.18);
    /* slight slide-up on open */
    animation:modalSlideUp 0.28s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes modalSlideUp{
    from{ transform:translateY(24px); opacity:0; }
    to  { transform:translateY(0);    opacity:1; }
}

/* Close (×) button */
.modal-close{
    position:absolute;
    top:14px;
    right:16px;
    width:32px;
    height:32px;
    border:none;
    background:transparent;
    font-size:22px;
    color:#6b7280;
    cursor:pointer;
    border-radius:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:background 0.2s, color 0.2s;
}

.modal-close:hover{
    background:#f3f4f6;
    color:#111827;
}

/* Title */
.modal-title{
    font-size:18px;
    font-weight:700;
    color:#111827;
    margin-bottom:26px;
    line-height:1.3;
    padding-right:24px; /* avoid overlap with close btn */
}

/* Field wrapper */
.modal-field{
    margin-bottom:18px;
}

.modal-field label{
    display:block;
    font-size:13px;
    font-weight:600;
    color:#374151;
    margin-bottom:7px;
}

.modal-field .required{
    color:#ef4444;
    margin-left:2px;
}

.modal-field .optional{
    color:#9ca3af;
    font-weight:400;
}

.modal-field input{
    width:100%;
    height:46px;
    border:1px solid #d1d5db;
    border-radius:9px;
    padding:0 14px;
    font-size:14px;
    color:#111827;
    outline:none;
    transition:border-color 0.2s, box-shadow 0.2s;
    background:white;
}

.modal-field input:focus{
    border-color:#243b8f;
    box-shadow:0 0 0 3px rgba(36,59,143,0.1);
}

.modal-field input::placeholder{
    color:#9ca3af;
}

/* Submit button */
.modal-submit{
    width:100%;
    height:48px;
    margin-top:8px;
    background:#243b8f;
    color:white;
    border:none;
    border-radius:10px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:background 0.2s, transform 0.15s;
}

.modal-submit:hover{
    background:#1d3176;
    transform:translateY(-1px);
}

.modal-submit:active{
    transform:translateY(0);
}

/* Responsive */
@media(max-width:540px){
    .modal-box{
        margin:0 16px;
        padding:28px 20px 24px;
    }

    .modal-title{
        font-size:16px;
    }
}



/* QUOTE MODAL EXTRAS            */


/* Phone row: country-code select + number input */
.quote-phone{
    display:flex;
    gap:0;
    border:1px solid #d1d5db;
    border-radius:9px;
    overflow:hidden;
}

.quote-phone select{
    height:46px;
    padding:0 10px;
    border:none;
    border-right:1px solid #d1d5db;
    background:#f9fafb;
    font-size:14px;
    color:#374151;
    cursor:pointer;
    outline:none;
    appearance:auto;
    min-width:72px;
}

.quote-phone input{
    flex:1;
    height:46px;
    border:none;
    padding:0 14px;
    font-size:14px;
    color:#111827;
    outline:none;
    background:white;
}

.quote-phone input::placeholder{
    color:#9ca3af;
}

/* Right-aligned submit for the quote modal */
.quote-submit-right{
    width:auto;
    padding:0 28px;
    margin-left:auto;
    display:block;
}