/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Roboto', sans-serif;
    background-color: #f5f7f9;
    color: #1f3c5a;
    line-height: 1.6;
    overflow-x: hidden;
}
html {
scroll-behavior: smooth;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

a {
    text-decoration: none;
}

.buttonboth a {
    padding: 17px 26px;
}

/* Header */

.btn-outline {
    background: transparent;
    border: 1px solid white !important;
    color: white;
}

.header-buttons a {
    padding: 10px 30px;
}

.header {
    background: linear-gradient(to right, #111f31 15.38%, #1f314a 49.04%);
    height: 85px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
 .whitebtn {
    background: #fff !important;
    color: #000 !important;
}
/* .whitebtn:hover {
    background: #000 !important;
    color: #fff !important;
} */ */
.logo {
    display: flex;
    align-items: center;
}

.logo-placeholder {
    width: 165px;
    height: 56px;
    background: white;
    border-radius: 10px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

.header-buttons {
    display: flex;
    gap: 20px;
}

/* Buttons */
.btn {
    padding: 17px 35px;
    border-radius: 100px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    border: 1px solid white;
    color: white;
}
.cstmo {
    background: linear-gradient(94.08deg, #03a3fb 0.71%, #1476e2 70.5%) !important;
        border: 0px !important;

}

.cstmo:hover{
    background: linear-gradient(94.08deg, #166dcd 0.71%, #1d82f1 70.5%) !important;
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
    background: #486baf;
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #6caaf2;
}

.btn-large {
    padding: 17px 35px;
    font-size: 19px;
}

.btn-gradient {
    background: linear-gradient(94.08deg, #03a3fb 0.71%, #1476e2 70.5%);
    color: white;
    border: none;
}

.btn-gradient:hover {
    opacity: 0.9;
}

.btn-outline-blue {
    background: transparent;
    border: 1px solid rgba(22, 112, 224, 0.8);
    color: white;
}

.btn-outline-blue:hover {
    background: rgba(22, 112, 224, 0.1);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header {
    width: 100%;
    background: linear-gradient(to right, #111f31 15.38%, #1f314a 49.04%);
    position: relative;
}


.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    display: block;
}

/* MOBILE */

@media (max-width:768px) {
.bannerlot .container {
    padding: 0 20px;
}
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 134px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px 0;
        text-align: center;
        border-top: 1px solid #eee;
    }

    .nav-menu a {
        display: block;
        padding: 12px 0;
    }

    .header-buttons {
        display: none;
    }

    .nav-link {
        color: #000;
    }

    .hero {
        display: block;
    }

    .hero-note {
        font-size: 16px;
        text-align: center;
        margin-bottom: 15px;
    }
}

.btntu:hover {
    background: linear-gradient(94.08deg, #03a3fb 0.71%, #1476e2 70.5%) !important;
    color: #fff;
}

/* ================= carousal ================= */

.carousel{
position:relative;
width:700px;
display:flex;
align-items:center;
}

.carousel-container{
overflow:hidden;
/*border:8px solid #fff;*/
width:100%;
}

.slides{
display:flex;
transition:0.5s;
}

.slide{
min-width:100%;
}

.slide img{
width:100%;
display:block;
}

.arrow{
background:none;
border:none;
font-size:35px;
color:white;
cursor:pointer;
padding:10px;
}

.dots {
    margin-top: 15px;
    width: 700px;
    text-align: center;
}

.dot{
height:10px;
width:10px;
background:#ddd;
border-radius:50%;
display:inline-block;
margin:5px;
cursor:pointer;
}

.dot.active{
background:#fff;
}

@media (max-width: 1024px) {
.carousel {
    width: inherit;
}
.dots {
    width: inherit;
}
}

/* ================= carousal Ends ================= */

/*Header Ends Here*/


/* ================= HERO ================= */
:root {
    --hero-gradient: linear-gradient(115.66deg, #142337 19.43%, #1f3c5a 69.2%);
    --btn-gradient: linear-gradient(94.08deg, #03a3fb .71%, #1476e2 70.5%);
    --text-white: #fff;
    --text-blue: #6caaf2;
}
.bannerlot{
    background: linear-gradient(115.66deg, #142337 19.43%, #1f3c5a 69.2%);
    }
.company-image img {
    max-width: 690px;
    border-radius: 10px;
    border: 4px solid #fff;
}
/*.hero {
    padding: 60px 114px 10px;
    min-height: auto;
    display: flex;
    gap: 100px;
}*/
.hero {
    /* background: linear-gradient(115.66deg, #142337 19.43%, #1f3c5a 69.2%); */
    padding: 60px 0px 10px;
    min-height: auto;
    /* margin-top: 5px; */
    display: flex;
    gap: 70px;
    align-items: center;
}
/*.company-image img {*/
    max-width: inherit;
}
.hero-content {
    max-width: 700px;
}
.hero .both {
    border: 1px solid rgba(22, 112, 224, 0.8);
    color: white;
}
.hero-buttons-detail .adborder {
    border: 1px solid #fff;
}
/* ================= BADGE ================= */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 16px;
    border: 1px solid rgba(0, 170, 255, .84);
    border-radius: 20px;
    margin-bottom: 30px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: rgba(0, 170, 255, .7);
    border-radius: 50%;
}

.badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(0, 170, 255, .91);
    letter-spacing: .5px;
}

/* ================= TITLE ================= */

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 41px;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 15px;
}
.hero-content {
    text-align: left;
}
.title-white {
    color: var(--text-white);
}

.title-blue {
    color: var(--text-blue);
}

/* ================= DESCRIPTION ================= */

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: var(--text-white);
    line-height: 1.5;
    margin-bottom: 20px;
}

/* ================= BUTTONS ================= */
.hero-buttons-detail a {
    display: flex;
    align-items: center;
    line-height: normal;
    justify-content: center;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.buttonboth a {
    display: flex;
    align-items: center;
    line-height: normal;
    justify-content: center;
}
.btn {
    padding: 17px 24px;
    border-radius: 100px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s;
    border: none;
    text-decoration: none;
}

.btn-large {
    font-size: 19px;
}

.btn-gradient {
    background: var(--btn-gradient);
    color: #fff;
}

.btn-outline-blue {
    background: transparent;
    border: 1px solid rgba(22, 112, 224, .8);
    color: #fff;
}

/* ================= BUTTON HOVER ================= */

.btn-gradient:hover {
    background: linear-gradient(90deg, #3aa0ff, #1a73e8);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
}

.btn-outline-blue:hover {
    background: rgba(22, 112, 224, .1);
}

/* ================= NOTE ================= */

.hero-note {
    font-family: 'Inter', sans-serif;
    font-size: 21px;
    color: rgba(255, 255, 255, .93);
}

/* HERO ENDS */


/* Trusted By Section */
.company-ticker a {
    color: #b2bbc4;
}
.company-ticker a:hover {
    color: #1476e2;
}
.trusted-by {
    padding: 0px 0px 50px;
    text-align: left;
}
.trusted-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #dbdbdb;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.company-ticker span {
    color: #dbdbdb;
}
.company-ticker {
    display: flex;
    justify-content: left;
    gap: 21px;
    flex-wrap: wrap;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.58);
}

a.explore-btn:hover {
    background: #1a73e8;
    color: #fff;
}

/*==================== Industries We Serve ==========================*/
.imagesboxs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}
.box a {
    background: #425789;
    color: #000;
    background: 405989;
    color: #fff;
    padding: 16px 10px;
    display: block;
    font-size: 20px;
}

.box a:hover{
    background: #1a73e8;
}
.whatwedo {
    padding: 80px 0;
}
.box img {
    border-radius: 0;
    /* margin-bottom: 12px; */
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}
.whatwedo {
    background: #efefef;
}
@media(max-width: 1024px){
    .box h3 {
    font-size: 14px;
}

.imagesboxs {
    grid-template-columns: repeat(2, 1fr);
}
}

@media(max-width: 767px){
.imagesboxs {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}
.whatwedo .container {
    padding: 0 20px;
}
}
/*==================== Industries We Serve Ends ==========================*/

/* ================= Manufacturing Efficiency is Still Stuck in Spreadsheets ================= */

.section-light {
    background: #f5f7f9;
}

.section-light,
.section-light-gray {
    padding: 80px 0;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

/* ================= HEADINGS ================= */
.platform .section-heading {
    margin-bottom: 10px;
}
.section-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 41px;
    font-weight: 700;
    color: #070d14;
    line-height: 1.15;
    margin: 0 auto 0px;
    max-width: 881px;
}
.manufeacture .section-subheading {
    margin-bottom: 40px;
}
.section-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: rgba(31, 60, 90, .8);
    max-width: 835px;
}
h1.hero-title-detail {
    color: #fff;
}
p.hero-description-detail {
    color: #fff;
    margin-bottom: 25px;
    margin-top: 12px;
}
/* ================= GRID ================= */

.problem-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ================= CARDS ================= */

.problem-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    text-align: center;
}

.icon-box {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1f3c5a;
    margin-bottom: 15px;
}

.section-highlight {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    color: #2470dc;
    margin-top: 40px;
    font-weight: 500;
}

/* ================= Manufacturing Efficiency is Still Stuck in Spreadsheets Ends ================= */


/* ================= One Platform. Complete Manufacturing Intelligence. ================= */

.section-light,
.section-light-gray {
    padding: 80px 0;
}

.section-light-gray {
    background: #f1f3f5;
}

/* ================= HEADINGS ================= */

.section-heading {
    font-family: "Montserrat", sans-serif;
    font-size: 41px;
    font-weight: 700;
    color: #070d14;
    text-align: center;
    line-height: 1.15;
    margin: 0 auto 30px;
    max-width: 881px;
}

.section-subheading {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    color: rgba(31, 60, 90, 0.8);
    text-align: center;
    margin: 0 auto 20px;
    max-width: 100%;
}

/* ================= GRID ================= */

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ================= CARD ================= */
.platform a .arrow {
    color: inherit;
    padding: 0;
}
.stopwasting {
    background-color: inherit;
    background-image: url(./images/stop-wasting.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
}
.solution-card {
    padding: 30px 24px;
    text-align: left;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #96969666;
}

.solution-title {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1f3c5a;
    margin-bottom: 15px;
    line-height: 30px;
    margin-top: 15px;
}
.whatwedo .section-heading {
    margin-bottom: 10px;
}
.manufeacture .section-heading {
    max-width: 100%;
}
/* ================= AI LIST ================= */

.ai-list {
    text-align: left;
    height: 300px;
}

.ai-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ai-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    font-size: 19px;
    color: #4f6782;
    line-height: 1.5;
}

.ai-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #1e90ff;
    border-radius: 50%;
}

/* ================= BUTTON ================= */

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 16px;
    color: #1a73e8;
    border: 2px solid #1a73e8;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.explore-btn .arrow {
    font-size: 18px;
}


/* ================= From Video Capture to Optimized Production in Minutes ================= */
.process-step img {
    margin: 0 auto 20px;
    border-radius: 10px;
}
.process-step img {
    margin: 0 auto 20px;
/*    background: linear-gradient(135deg, #d9d9d9, #f2f2f2);
    border-radius: 8px;
    border: 10px solid #1476e2;*/
/*    box-shadow: inset 6px 6px 10px rgba(0,0,0,0.15),
    inset -6px -6px 10px rgba(255,255,255,0.9),
    4px 4px 10px rgba(0,0,0,0.25);*/
}
.fullwidth {
    max-width: 100%;
}
.section-dark {
    background: linear-gradient(101.14deg, #162539 19.96%, #1f3b59 61.76%);
    padding: 80px 0;
}
.process-arrow {
    position: relative;
    top: -90px;
}
.process-arrow img {
    width: 180px;
}
/* ================= HEADINGS ================= */
.process-step img {
    margin: 0 auto 20px;
}

.section-heading-light {
    font-family: "Montserrat", sans-serif;
    font-size: 41px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 30px;
}

.section-subheading-light {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 785px;
    margin: 0 auto 20px;
}
.manufeacture .section-heading {
    margin-bottom: 10px;
}
.formvideo .section-subheading-light {
    max-width: 100%;
    margin-bottom: 50px;
}
.formvideo .section-heading-light {
    margin-bottom: 10px;
}
/* ================= PROCESS STEPS ================= */

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.process-step {
    flex: 1;
    max-width: 300px;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.step-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.process-arrow {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.5);
}

/* ================= BUTTONS ================= */

.btn {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 17px 35px;
    border-radius: 100px;
    border: none;
    text-decoration: none;
    transition: 0.3s;
}

.btn-gradient {
    background: linear-gradient(94.08deg, #03a3fb 0.71%, #1476e2 70.5%);
    color: #fff;
}

.btn-large {
    font-size: 19px;
    padding: 17px 35px;
}

/* ================= NOTE ================= */

.demo-note {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
}


/* ================= Built for Measurable Manufacturing Impact  ================= */

.fullwidth {
    max-width: 100% !important;
}
.result-card img {
    margin: 0 auto;
}

.section-light {
    background: #f5f7f9;
    padding: 80px 0;
}

/* Container */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

.builton .container {
    max-width: 100%;
    width: 100%;
}

/* Headings */
.section-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 41px;
    font-weight: 700;
    color: #070d14;
    text-align: center;
    line-height: 1.15;
    margin: 0 auto 10px;
    max-width: 100%;
}

.section-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: rgba(31, 60, 90, 0.8);
    text-align: center;
    margin: 0 auto 10px;
    max-width: 100%;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

/* Result Card */
.result-card {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.result-stat {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.result-label {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: rgba(31, 60, 90, 0.8);
    margin-top: 20px;
}

/* Button */
.btn {
    padding: 17px 35px;
    border-radius: 100px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    text-decoration: none;
}

.btn-gradient {
    background: linear-gradient(94.08deg, #03a3fb 0.71%, #1476e2 70.5%);
    color: #fff;
}


/* ================= Seamlessly Connect With Your Existing Systems ================= */


.section-light-gray {
    background: #f1f3f5;
}

.section-light,
.section-light-gray {
    padding: 80px 0;
}

/* Container */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

.builton .container {
    max-width: 100%;
    width: 100%;
}

/* Headings */
.section-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 41px;
    font-weight: 700;
    color: #070d14;
    text-align: center;
    line-height: 1.15;
    margin: 0 auto 40px;
    max-width: 100%;
}

.section-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: rgba(31, 60, 90, 0.8);
    text-align: center;
    margin: 0 auto 40px;
    max-width: 100%;
}

/* Grid Section */
.innderdiv .container {
    max-width: 900px;
    margin: 0px auto 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    justify-items: center;
}

/* Card */
.card {
    width: 180px;
    height: 150px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.converto .card img {
    background: #E7F0FB;
    border-radius: 8px;
    padding: 13px;
    max-width: 60px;
}

.card p {
    margin-top: 10px;
    font-weight: 600;
    color: #2d3a4b;
}

/* Button */
.integration-btn {
    padding: 16px 40px;
    font-size: 20px;
    color: #1a73e8;
    background: transparent;
    border: 2px solid #1a73e8;
    border-radius: 40px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
}

/*.bottom {
    grid-column: 2 / span 2;
}*/


/* ================= Engineering Teams Trust ACSCO ================= */

.section-light {
    background: #f5f7f9;
}

.testimonial-card img {
    margin-bottom: 15px;
}

.section-light,
.section-light-gray {
    padding: 80px 0;
}

/*.builton .container {
    max-width: 100%;
    width: 100%;
}*/

/* Headings */
.section-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 41px;
    font-weight: 700;
    color: #070d14;
    text-align: center;
    line-height: 1.15;
    margin: 0 auto 10px;
    max-width: 881px;
}

.section-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: rgba(31, 60, 90, 0.8);
    text-align: center;
    margin: 0 auto 40px;
    max-width: 100%;
}

/* Testimonials */
.testimonials {
    padding: 0 20px;
}

.testimonial-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 430px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.author {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.company {
    font-size: 14px;
    color: #666;
}

/* Button */
.integration-btn {
    padding: 16px 40px;
    font-size: 20px;
    color: #1a73e8;
    background: transparent;
    border: 2px solid #1a73e8;
    border-radius: 40px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
}

.integration-btn:hover {
    background: #1a73e8;
    color: #fff;
}


/* ================= Ready to Transform Your Manufacturing Process? ================= */

.cta-section {
    background: linear-gradient(101.14deg, #162539 19.96%, #1f3b59 61.76%);
    padding: 100px 60px 20px;
    text-align: center;
}
.nodeps .btn-gradient {
    line-height: 29px;
}
/* Heading & Text */
.cta-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}
.builton .section-subheading {
    max-width: 100%;
}
/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 17px 35px;
    border-radius: 100px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-large {
    padding: 17px 35px;
    font-size: 19px;
}

/* Gradient Button */
.btn-gradient {
    background: linear-gradient(94.08deg, #03a3fb 0.71%, #1476e2 70.5%);
    color: #fff;
}

.btn-gradient:hover {
    background: linear-gradient(90deg, #3aa0ff, #1a73e8);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Outline Button */
.btn-outline-white {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Trust Section */
.trust-section {
    padding: 20px 0;
}

.trust-container {
    max-width: 727px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cfd6dd;
    font-size: 18px;
}

.nodeps .btn-outline-white {
    color: white;
    color: white;
    border: 2px solid white;
    color: white;
}


/* ================= FOOTER ================= */

/*.footer {
    background: linear-gradient(to right, #152337 0%, #1f3b59 62.5%);
    padding: 50px 0 0;
}*/
.footer {
    background: #fff;
    padding: 80px 0 0;
}
.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    gap: 150px;
}

.footer-logo {
    flex-shrink: 0;
}

.logo-placeholder-footer {
    width: 119px;
    height: 152px;
    background: #fff;
    border-radius: 8px;
}

.footer-columns {
    display: flex;
    flex: 1;
    gap: 100px;
}

.footer-column {
    flex: 1;
}

/* ================= TEXT ================= */

.footer-heading {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1476e2;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
    color: #1476e2;
}

/* ================= BOTTOM ================= */

.footer-bottom {
    margin-top: 50px;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(120, 120, 120, 0.4);
}

.footer-bottom p {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #000;
}








:root {
    --color-primary: #02a4fb;
    --color-primary-dark: #1670e0;
    --color-dark-blue: #1f314a;
    --color-dark-blue-2: #1e3a58;
    --color-dark-blue-3: #203854;
    --color-dark-blue-4: #2d4969;
    --color-dark-blue-5: #0b131d;
    --color-light-blue: #dbeafe;
    --color-light-blue-2: #eef2ff;
    --color-light-blue-3: #eaf4ff;
    --color-light: #e6e6e6;
    --color-gray: #5a5a5a;
    --color-gray-light: #f5f7f9;
    --color-white: #ffffff;
    --color-black: #333333;
    --color-border: #ddd;
    --color-border-2: #698bb3;
}


/* ================= HERO Detail Turn Time Study Videos into Verified, Actionable Improvements — In Minutes ================= */
.hero-detail {
    background: #1f3c5a;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-detail .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-background-detail {
    position: absolute;
    bottom: -22.38%;
    left: 50%;
    transform: translateX(-50%);
    width: 1522px;
    height: 100%;
    background: #1f3c5a;
    border-radius: 30px;
    z-index: 0;
}

/* ================= HERO CONTENT ================= */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-content-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    text-align: left;
}

.hero-text-detail {
    max-width: 615px;
}

.hero-label-detail {
    font-size: 16px;
    font-weight: 700;
    line-height: 50px;
}

.text-light-detail {
    color: var(--color-light);
}

.text-blue-detail {
    color: var(--color-primary);
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 44px;
    margin-bottom: 15px;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: var(--text-white);
    line-height: 1.5;
    margin-bottom: 30px;
}

/* ================= BUTTONS ================= */

.hero-buttons-detail {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 17px 35px;
    border-radius: 100px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-gradient {
    background: linear-gradient(94.08deg, #03a3fb 0.71%, #1476e2 70.5%);
    color: var(--color-white);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-black);
    font-weight: 500;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-gradient:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 164, 251, 0.3);
}

/* ================= HERO IMAGE ================= */

.hero-image-detail {
    position: relative;
}

.hero-image-detail img {
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

/* ================= HERO STATS ================= */

.hero-stats-detail {
    display: flex;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.stat-detail {
    color: var(--color-white);
}

.stat-number-detail {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label-detail {
    font-size: 12px;
}


/* ================= CAPABILITIES SECTION ================= */

.section-light {
    background: var(--color-gray-light);
}

.section {
    padding: 80px 0;
}

.container {
    padding: 0 20px;
}

/* ================= HEADER ================= */

.section-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 60px;
}

.section-label {
    font-size: 18px;
    font-weight: 600;
    color: #127ce7;
    text-transform: uppercase;
    line-height: 40px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    line-height: 40px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 20px;
}

.text-blue {
    color: var(--color-primary);
}

.section-description {
    font-size: 20px;
    line-height: 30px;
    color: var(--color-black);
}

/* ================= FEATURES ================= */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.feature-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.bg-blue {
    background: var(--color-light-blue);
}

.feature-title {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    color: var(--color-black);
    text-transform: capitalize;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-gray);
}

/* ================= CTA ================= */

.section-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn {
    padding: 17px 35px;
    border-radius: 100px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-gradient {
    background: linear-gradient(to right, #03a2fa, #1671e1);
    color: var(--color-white);
}

.btn-gradient:hover {
    opacity: 0.9;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 164, 251, 0.3);
}

.widthf {
    max-width: 100%;
    margin-bottom: 40px;
}
/* ================= How It Works BUTTONS ================= */

.btn {
    padding: 17px 35px;
    border-radius: 100px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease;
    border: none;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    border: 1px solid white;
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
    background: #486baf;
    color: white;
}

.btn-primary:hover {
    background: #6caaf2;
}

.btn-gradient {
    background: linear-gradient(94.08deg, #03a3fb 0.71%, #1476e2 70.5%);
    color: white;
}

.btn-gradient:hover {
    opacity: .9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 164, 251, .3);
}

/* ================= SECTIONS ================= */

.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--color-dark-blue-3);
}

.section-label {
    font-size: 18px;
    font-weight: 600;
    color: #127ce7;
    text-transform: uppercase;
    line-height: 40px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    line-height: 40px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 20px;
}

.section-title.text-white {
    color: var(--color-white);
}

.text-white {
    color: var(--color-white);
}

.text-blue {
    color: var(--color-primary);
}

/* ================= HOW IT WORKS ================= */


/* ================= How It Works BUTTONS ================= */


.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--color-dark-blue-3);
}

.section-label {
    font-size: 18px;
    font-weight: 600;
    color: #127ce7;
    text-transform: uppercase;
    line-height: 40px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    line-height: 40px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 20px;
}

.section-title.text-white {
    color: var(--color-white);
}

.text-white {
    color: var(--color-white);
}

.text-blue {
    color: var(--color-primary);
}

/* ================= HOW IT WORKS ================= */
.howitwork .container {
    max-width: 100%;
    padding-left: 0;
}

.how-it-works-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.how-it-works-image-detail {
    border-radius: 20px;
    overflow: hidden;
}

.how-it-works-image-detail img {
    width: 100%;
}

.how-it-works-content-detail {
    color: var(--color-white);
    padding-right: 170px;
}

.how-it-works-content-detail {
    text-align: left;
}

.process-steps-detail {
    margin: 40px 0;
}

.process-step-detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.bg-gradient {
    background: linear-gradient(to bottom, #027ee4, #0abfdb);
}

.step-icon-detail {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: linear-gradient(to bottom, #027ee4, #0abfdb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    flex-shrink: 0;
}

.step-content-detail h3 {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 8px;
    line-height: 20px;
    text-align: left;
}

.step-content-detail p {
    font-size: 14px;
    line-height: 24px;
    color: var(--color-white);
}

.step-divider-detail {
    height: 51px;
    width: 1px;
    background: repeating-linear-gradient(to bottom,
            #bae7ff,
            #bae7ff 2px,
            transparent 2px,
            transparent 4px);
    margin: 10px 0 10px 24px;
}

/* ================= What a One-Hour Time Study Costs Without AI  ================= */

.custed {
    background: #fff !important;
}

.section-light {
    background: var(--color-gray-light);
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 36px;
    line-height: 40px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 20px;
}

.text-blue {
    color: var(--color-primary);
}

.section-description {
    font-size: 20px;
    line-height: 30px;
    color: var(--color-black);
}

/* ================= COMPARISON ================= */

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1100px;
    gap: 40px;
    margin: 0 auto;
}

.comparison-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px;
}

.comparison-card-featured {
    background: var(--color-light-blue-2);
    border-color: #8ec5ff;
}

.comparison-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 30px;
    color: var(--color-black);
    text-align: left;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    font-size: 20px;
    line-height: 48px;
    color: var(--color-black);
    position: relative;
    padding-left: 0;
    text-align: left;
}

.mslist li {
    list-style: disc;
}

.mslist li::marker {
    color: rgb(2, 164, 251);
}

span.b2 {
    display: inline-flex;
    vertical-align: middle;
    margin-right: 10px;
    gap: 30px;
}

/* ================= CTA ================= */

.section-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ================= BUTTON ================= */

.btn {
    padding: 17px 35px;
    border-radius: 100px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease;
    border: none;
    text-decoration: none;
}

.btn-gradient {
    color: var(--color-white);
    background: linear-gradient(94.08deg, #03a3fb 0.71%, #1476e2 70.5%);
}

.btn-gradient:hover {
    opacity: .9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 164, 251, .3);
}


/* ================= UNIQUE CAPABILITY FEATURES ================= */

.section {
    padding: 80px 0;
}

.section-light {
    background: var(--color-gray-light);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 60px;
}

.section-label {
    font-size: 18px;
    font-weight: 600;
    color: #127ce7;
    text-transform: uppercase;
    line-height: 40px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    line-height: 40px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 20px;
}

.section-description {
    font-size: 20px;
    line-height: 30px;
    color: var(--color-black);
}

.text-blue {
    color: var(--color-primary);
}

/* ================= UNIQUE CAPABILITY FEATURES ================= */

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.feature-card-vertical {
    text-align: center;
}

.feature-icon-large {
    width: 62px;
    height: 62px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: transparent !important;
}

.feature-title {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    color: var(--color-black);
    text-transform: capitalize;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-gray);
}

/* ================= VIDEO ================= */

.video-preview img {
    width: 100%;
}

/* ================= CTA ================= */

.section-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ================= BUTTON ================= */

.btn {
    padding: 17px 35px;
    border-radius: 100px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease;
    border: none;
    text-decoration: none;
}

.btn-gradient {
    color: white;
    background: linear-gradient(94.08deg, #03a3fb 0.71%, #1476e2 70.5%);
}

.btn-gradient:hover {
    opacity: .9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 164, 251, .3);
}


/* 4 EXPERT MODES  */
.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--color-dark-blue-3);
}

.section-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 60px;
}

/* Section Text */
.section-label {
    font-size: 18px;
    font-weight: 600;
    color: #127ce7;
    text-transform: uppercase;
    line-height: 40px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    line-height: 40px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 20px;
}

.section-title.text-white,
.text-white {
    color: var(--color-white);
}

.text-blue {
    color: var(--color-primary);
}

.section-description {
    font-size: 20px;
    line-height: 30px;
    color: var(--color-black);
}

.section-description.text-white {
    color: var(--color-white);
}

/* Layout */
.loadbt {
    display: flex;
    gap: 100px;
    padding-right: 60px;
}

/* Video */
.video-preview {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.video-preview img {
    width: 100%;
}

.lifeed {
    border-radius: 0 !important;
}

/* Modes Grid */
.modes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.mode-card {
    background: var(--color-dark-blue-4);
    border: 1px solid var(--color-border-2);
    border-radius: 10px;
    padding: 30px;
}

.mode-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.mode-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    text-transform: capitalize;
    margin-bottom: 12px;
    line-height: 20px;
}

.mode-description {
    font-size: 14px;
    line-height: 20px;
    color: var(--color-white);
}

/* Buttons */
.btn {
    padding: 17px 35px;
    border-radius: 100px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-gradient {
    background: linear-gradient(94.08deg, #03a3fb 0.71%, #1476e2 70.5%);
    color: white;
}

.btn-gradient:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 164, 251, 0.3);
}

/* CTA */
.section-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.section-cta.nosted {
    display: unset;
}

/* ================= SECTION INTELLIGENT WORKFLOW ================= */

.section {
    padding: 80px 0;
}

.section-light {
    background: var(--color-gray-light);
}

.inteligentworkflow .container {
    max-width: 100%;
    margin: 0;
    padding-left: 50px;
    padding-right: 0;
}

.section-label {
    font-size: 18px;
    font-weight: 600;
    color: #127ce7;
    text-transform: uppercase;
    line-height: 40px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    line-height: 40px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 20px;
}

.section-description {
    font-size: 20px;
    line-height: 30px;
    color: var(--color-black);
}

.text-blue {
    color: var(--color-primary);
}

/* ================= LAYOUT ================= */

.smart-query-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.smart-query-image {
    border-radius: 20px;
    overflow: hidden;
}

.smart-query-image img {
    width: 100%;
}

/* ================= FEATURES ================= */

.query-features {
    margin: 40px 0;
}

.query-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.query-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 1;
}

.bg-gradient {
    background: linear-gradient(to bottom, #027ee4, #0abfdb);
}

.query-feature-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--color-black);
    margin-bottom: 8px;
    line-height: 20px;
}

.query-feature-description {
    font-size: 14px;
    line-height: 24px;
    color: #000;
    font-weight: 500;
    max-width: 520px;
}

.smart-query-content {
    text-align: left;
}

/* ================= BUTTON ================= */

.btn {
    padding: 17px 35px;
    border-radius: 100px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease;
    border: none;
    text-decoration: none;
}

.btn-gradient {
    background: linear-gradient(94.08deg, #03a3fb 0.71%, #1476e2 70.5%);
    color: #fff;
}

.btn-gradient:hover {
    opacity: .9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 164, 251, .3);
}


/* ================= SECTION DATA SECURITY ================= */

.section {
    padding: 80px 0;
}

.whiteflow {
    background: #fff;
}

.section-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 60px;
}

.section-label {
    font-size: 18px;
    font-weight: 600;
    color: #127ce7;
    text-transform: uppercase;
    line-height: 40px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    line-height: 40px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 20px;
}

.section-description {
    font-size: 20px;
    line-height: 30px;
    color: var(--color-black);
}

.text-blue {
    color: var(--color-primary);
}

/* ================= SECURITY GRID ================= */

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.security-card {
    background: #fafafa;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: left;
}

.security-icon {
    width: 65px;
    height: 58px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.bg-blue-light {
    background: var(--color-light-blue);
}

.security-title {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--color-black);
    margin-bottom: 12px;
    line-height: 20px;
}

.security-description {
    font-size: 14px;
    line-height: 24px;
    color: var(--color-gray);
}

/* ================= CTA ================= */

.section-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ================= BUTTON ================= */

.btn {
    padding: 17px 35px;
    border-radius: 100px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease;
    border: none;
    text-decoration: none;
}

.btn-gradient {
    background: linear-gradient(94.08deg, #03a3fb 0.71%, #1476e2 70.5%);
    color: white;
}

.btn-gradient:hover {
    opacity: .9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 164, 251, .3);
}


/*======================= Stop Wasting Hours on Manual Time Studies. ======================= */
.section {
    padding: 80px 0;
}
.requesb .rqst {
    background: transparent;
    border: 2px solid #eee;
}
.section-cta-dark {
    background: var(--color-dark-blue-5);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.requesb .btn {
    padding: 18px 55px;
}
/* Decorative Elements */
.decorative-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.decorative-icon {
    position: absolute;
    opacity: 0.08;
    background: var(--color-light-blue);
    border-radius: 50%;
}

/* Decorative Icon Positions */
.decorative-icon-1 {
    width: 135px;
    height: 112px;
    top: 22px;
    right: 100px;
    transform: rotate(30deg);
}

.decorative-icon-2 {
    width: 85px;
    height: 71px;
    top: 235px;
    right: 200px;
    transform: rotate(30deg);
}

.decorative-icon-3 {
    width: 77px;
    height: 64px;
    top: 240px;
    left: 270px;
    transform: rotate(30deg);
}

.decorative-icon-4 {
    width: 135px;
    height: 112px;
    top: 206px;
    left: 72px;
    transform: rotate(30deg);
}

.decorative-icon-5 {
    width: 83px;
    height: 69px;
    top: 25px;
    left: 147px;
    transform: rotate(-41.73deg);
}

/* CTA Text */
.cta-title {
    font-size: 48px;
    line-height: 54px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--color-white);
    text-align: center;
    max-width: 733px;
    margin: 0 auto 30px;
}

.cta-description {
    font-size: 20px;
    line-height: 36px;
    font-weight: 500;
    color: var(--color-white);
    text-align: center;
    max-width: 796px;
    margin: 0 auto 40px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 17px 35px;
    border-radius: 100px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.requesb .btn {
    padding: 18px 55px;
}

/* Button Styles */
.btn-gradient {
    background: linear-gradient(94.08deg, #03a3fb 0.71%, #1476e2 70.5%);
    color: #fff;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    box-shadow: 0 4px 12px rgba(2, 164, 251, 0.3);
}

.btn-white-outline {
    background: #f3f7ff;
    color: var(--color-black);
    font-weight: 500;
}

.btn-white-outline:hover {
    background: var(--color-white);
}

/* Extra Hover Effects */
.gk:hover,
.gd:hover {
    background: linear-gradient(to right, #03a2fa, #1671e1) !important;
    color: var(--color-white) !important;
}


/* ================= Header RESPONSIVE ================= */
a.cstm {
    background: linear-gradient(94.08deg, #03a3fb 0.71%, #1476e2 70.5%);
}
.btn-primary:hover {
    background: linear-gradient(94.08deg, #166dcd 0.71%, #1d82f1 70.5%);
}
@media(max-width:1380px){
.header {
    padding: 0 20px;
}   
}
/* 1280px */
@media (max-width: 1280px) {
    .container {
        padding: 0 40px;
    }

    .header-content {
        padding: 0 40px;
    }

    .nav-menu {
        gap: 30px;
    }
}

/* 1024px */
@media (max-width: 1024px) {
    .logo img {
    max-width: 150px;
}
    .header {
        height: auto;
        padding: 15px 0;
    }
.company-image img {
    max-width: 100%;
}
    .header-content {
        padding: 0 10px;
    }

    .nav-menu {
        gap: 20px;
    }

    .header-buttons {
        gap: 10px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 40px;
        font-size: 17px;
    }
.hero-content {
    text-align: center;
}
}

/* 768px */
@media (max-width: 768px) {
    .nav-menu .nav-link:hover {
    background: linear-gradient(94.08deg, #03a3fb 0.71%, #1476e2 70.5%);
    color: #fff;
}
    .header {
        position: relative;
    }

.header-content {
    flex-direction: column;
    gap: 25px;
    padding: 20px;
}

    .logo-placeholder {
        width: 140px;
        height: 48px;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .header-buttons {
        justify-content: center;
        width: 100%;
    }

    .btn {
        padding: 8px 20px;
        font-size: 13px;
    }

    .btn-large {
        padding: 12px 35px;
        font-size: 15px;
    }
}

/* 375px */
@media (max-width: 375px) {
    .header-content {
        padding: 15px;
    }
.whatwedo {
    padding: 50px 0;
}
    .logo-placeholder {
        width: 120px;
        height: 40px;
    }

    .nav-menu {
        gap: 10px;
    }

    .header-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .btn {
        padding: 8px 18px;
        font-size: 12px;
    }

    .btn-large {
        padding: 10px 30px;
        font-size: 14px;
    }

    .logo-placeholder-footer {
        width: 100px;
        height: 128px;
    }
}


/* ================= hero RESPONSIVE ================= */

@media (max-width:1460px) {
    .hero {
        padding: 60px 20px;
    }
}

@media (max-width:1280px) {
    .hero {
        padding: 100px 80px;
    }
}

@media (max-width:1024px) {
.company-image img {
    margin: 50px auto 0;
}

    .hero {
        display: block;
        text-align: center;
        padding: 80px 60px;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 19px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 40px;
        font-size: 17px;
    }

    .hero-note {
        font-size: 18px;
        margin-bottom: 20px;
    }

}

@media (max-width:768px) {

    .hero {
        padding: 40px 0px 20px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 17px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-large {
        padding: 12px 35px;
        font-size: 15px;
    }

    .hero-note {
        font-size: 16px;
    }

}

@media (max-width:767px) {

    .company-image img {
        max-width: 100%;
        margin-top: 20px;
    }

}


/* TRUSTED BY MANUFACTURING RESPONSIVE */
@media (max-width:768px) {
    .trusted-by {
        padding: 25px 20px 40px;
    }

    .company-ticker {
        gap: 20px;
        font-size: 11px;
    }
    .trusted-by {
    text-align: center;
}
.company-ticker {
    justify-content: center;
}
}

@media (max-width:375px) {
    .trusted-by {
        padding: 20px 15px 30px;
    }

    .trusted-title {
        font-size: 13px;
    }

    .company-ticker {
        gap: 15px;
        font-size: 10px;
    }
}


/* ================= RESPONSIVE Manufacturing Efficiency is Still Stuck in Spreadsheets ================= */

@media (max-width:1280px) {

    .problem-grid,
    .solutions-grid {
        gap: 35px;
    }

}

@media (max-width:1024px) {

    .problem-grid,
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .section-heading,
    .section-heading-light {
        font-size: 36px;
    }

    .section-subheading,
    .section-subheading-light {
        font-size: 18px;
    }

}

@media (max-width:768px) {

    .container {
        padding: 0 25px;
    }

    .explore-btn {
        padding: 10px 10px;
    }

    .problem-grid,
    .solutions-grid,
    .results-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .problem-card {
        padding: 30px 25px;
    }

    .card-title {
        font-size: 20px;
    }

    .section-heading,
    .section-heading-light {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .section-subheading,
    .section-subheading-light {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .section-light,
    .section-light-gray,
    .section-dark {
        padding: 60px 0;
    }

}


/* ================= RESPONSIVE One Platform. Complete Manufacturing Intelligence. ================= */

/* 1280px */
@media (max-width: 1280px) {
    .container {
        padding: 0 40px;
    }

    .solutions-grid {
        gap: 35px;
    }
}

/* 1024px */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .platform .container {
        padding: 0 20px;
    }

    .section-heading,
    .section-heading-light {
        font-size: 36px;
    }

    .section-subheading,
    .section-subheading-light {
        font-size: 18px;
    }

    .problem-grid,
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* 768px */
@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

.solution-card .ai-list {
    margin-bottom: 25px;
    height: auto;
}

    .section-heading,
    .section-heading-light {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .section-subheading,
    .section-subheading-light {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .problem-grid,
    .solutions-grid,
    .results-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .solution-title {
        font-size: 22px;
    }
}


/* ================= RESPONSIVE From Video Capture to Optimized Production in Minutes  ================= */

/* 1280px */
@media (max-width: 1280px) {
    .container {
        padding: 0 40px;
    }
    .process-arrow {
    display: none;
}
}

/* 1024px */
@media (max-width: 1024px) {
    .section-heading-light {
        font-size: 36px;
    }

    .section-subheading-light {
        font-size: 18px;
    }

    .process-steps {
        flex-direction: column;
        gap: 30px;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .formvideo .container {
        padding: 0 20px;
    }
}

/* 768px */
@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }

    .section-dark {
        padding: 60px 0;
    }

    .section-heading-light {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .section-subheading-light {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .step-title {
        font-size: 22px;
    }

    .step-description {
        font-size: 15px;
    }

    .process-steps {
        gap: 25px;
    }

    .btn-large {
        font-size: 15px;
        padding: 12px 35px;
    }
}


/* ================= RESPONSIVE Built for Measurable Manufacturing Impact ================= */

@media (max-width:1280px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width:1024px) {

    .container {
        padding: 0 30px;
    }

    .section-heading {
        font-size: 36px;
    }

    .section-subheading {
        font-size: 18px;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width:768px) {
    .builton .container {
        padding: 0 20px;
    }

    .section-light {
        padding: 60px 0;
    }

    .section-heading {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .section-subheading {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .result-card {
        padding: 35px 20px;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .container {
        padding: 0 25px;
    }
}


/* ================= Responsive Seamlessly Connect With Your Existing Systems ================= */

/* 1280px */
@media (max-width: 1280px) {
    .container {
        padding: 0 40px;
    }
}

/* 1024px */
@media (max-width: 1024px) {
    .section-heading {
        font-size: 36px;
    }

    .section-subheading {
        font-size: 18px;
    }

    .innderdiv .container {
        display: inline-flex;
        gap: 10px;
        margin: 0 auto 35px;
    }

    .buitl a {
        padding: 17px 35px;
    }

    .integration-btn {
        margin-top: 60px;
        padding: 16px 20px;
    }
}

/* 768px */
@media (max-width: 768px) {

    .section-light,
    .section-light-gray {
        padding: 60px 0;
    }

    .testimonial-card img {
        margin: 0 auto 10px;
    }

    .testimonial-card {
        width: 100%;
        text-align: center;
    }

    .container {
        padding: 0 25px;
    }

    .section-heading {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .section-subheading {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

/* 767px */
@media (max-width: 767px) {
    .innderdiv .container {
        display: block;
    }

    .card {
        margin-bottom: 25px;
    }
    .result-stat {
    font-size: 34px;
    margin-bottom: 0px;
}
.readysecb .container {
    padding: 0 10px;
}
}


/* ================= Responsive Engineering Teams Trust ACSCO ================= */

@media (max-width:1280px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width:1024px) {
    .container {
        padding: 0 30px;
    }

    .section-heading {
        font-size: 36px;
    }

    .section-subheading {
        font-size: 18px;
    }

    .integration-btn {
        margin-top: 0;
        padding: 16px 20px;
    }
}

@media (max-width:900px) {
    .testimonial-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width:768px) {

    .section-light,
    .section-light-gray {
        padding: 60px 0;
    }

    .container {
        padding: 0 25px;
    }

    .section-heading {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .section-subheading {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .testimonial-card {
        width: 100%;
    }
}


/* ================= Responsive Engineering Teams Trust ACSCO ================= */
@media(max-width: 1366px){
.testimonial-card {
    width: 408px;
}    
}
@media (max-width:1280px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width:1024px) {
    .container {
        padding: 0 30px;
    }

    .section-heading {
        font-size: 36px;
    }

    .section-subheading {
        font-size: 18px;
    }

    .integration-btn {
        margin-top: 0;
        padding: 16px 20px;
    }
}

@media (max-width:900px) {
    .testimonial-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width:768px) {

    .section-light,
    .section-light-gray {
        padding: 60px 0;
    }

    .container {
        padding: 0 25px;
    }

    .section-heading {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .section-subheading {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .testimonial-card {
        width: 100%;
    }
}


/* ================= Responsive Ready to Transform Your Manufacturing Process? ================= */

@media (max-width:1280px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width:1024px) {

    .container {
        padding: 0 30px;
    }
.nav-link {
    font-size: 14px;
}
    .cta-heading {
        font-size: 32px;
    }

    .cta-text {
        font-size: 18px;
    }

    .cta-buttons {
        flex-wrap: wrap;
    }

    .btn-large {
        padding: 14px 40px;
        font-size: 17px;
    }
}

@media (max-width:768px) {
    .nodeps a {
        padding: 12px 25px;
    }

    .container {
        padding: 0 25px;
    }

    .cta-section {
        padding: 70px 30px 0;
    }

    .cta-heading {
        font-size: 28px;
    }

    .cta-text {
        font-size: 17px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 350px;
    }

    .btn-large {
        padding: 12px 35px;
        font-size: 15px;
    }

    .trust-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


/* ================= Hero Detail RESPONSIVE ================= */

/* 1280px */
@media (max-width: 1280px) {
    .hero-detail .container {
        padding: 0 40px;
    }

    .hero-content-detail {
        gap: 40px;
    }

    .hero-title-detail {
        font-size: 38px;
        line-height: 46px;
    }
}

/* 1024px */
@media (max-width: 1024px) {
    .hero-detail {
        padding: 120px 0 60px;
    }

    .hero-content-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text-detail {
        max-width: 100%;
        text-align: center;
    }

    .hero-buttons-detail {
        justify-content: center;
    }

    .hero-image-detail {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-stats-detail {
        justify-content: center;
        gap: 60px;
    }
}

/* 768px */
@media (max-width: 768px) {
    .hero-detail .container {
        padding: 0 20px;
    }

    .hero-detail {
        padding: 30px 0 40px;
    }

    .hero-title-detail {
        font-size: 32px;
        line-height: 40px;
    }

    .hero-description-detail {
        font-size: 16px;
        line-height: 30px;
    }

    .hero-buttons-detail .btn {
        width: 100%;
    }

.hero-stats-detail {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    margin-top: 30px;
}
.hero-label-detail {
    font-size: 12px;
}
}

/* 480px */
@media (max-width: 480px) {
    .hero-title-detail {
        font-size: 26px;
        line-height: 34px;
    }

    .hero-description-detail {
        font-size: 14px;
        line-height: 24px;
    }
}


/* ================= CAPABILITIES RESPONSIVE ================= */

@media (max-width:1280px) {

    .container {
        padding: 0 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width:768px) {

    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 28px;
        line-height: 36px;
    }

    .section-description {
        font-size: 18px;
        line-height: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width:480px) {

    .section-label {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
        line-height: 32px;
    }

    .section-description {
        font-size: 16px;
        line-height: 26px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-description {
        font-size: 14px;
        line-height: 22px;
    }
}


/* ================= RESPONSIVE How It Works ================= */

@media (max-width:1280px) {

    .container {
        padding: 0 40px;
    }

}

@media (max-width:1024px) {

    .how-it-works-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}

@media (max-width:768px) {
.section-heading {
    font-size: 24px;
    line-height: 33px;
}
    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 28px;
        line-height: 36px;
    }

    .how-it-works-content-detail {
        padding-right: 10px;
        padding-left: 10px;
    }

}


/* ================= RESPONSIVE What a One-Hour Time Study Costs Without AI  ================= */

@media (max-width:1280px) {

    .container {
        padding: 0 40px;
    }

}

@media (max-width:1024px) {

    .comparison-grid {
        gap: 30px;
    }

}

@media (max-width:768px) {

    .uniquecapiility .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 28px;
        line-height: 36px;
    }

    .section-description {
        font-size: 18px;
        line-height: 28px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison-title {
        font-size: 24px;
    }

    .comparison-list li {
        font-size: 18px;
        line-height: 40px;
    }

    .custed .container {
        padding: 0 20px;
    }
}

@media (max-width:480px) {

    .section-title {
        font-size: 24px;
        line-height: 32px;
    }

    .section-description {
        font-size: 16px;
        line-height: 26px;
    }

}


/* ================= RESPONSIVE UNIQUE CAPABILITY  ================= */

@media (max-width:1280px) {

    .container {
        padding: 0 40px;
    }

}

@media (max-width:1024px) {

    .features-grid-3 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}

@media (max-width:768px) {

    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 28px;
        line-height: 36px;
    }

    .section-description {
        font-size: 18px;
        line-height: 28px;
    }

}

@media (max-width:480px) {

    .section-title {
        font-size: 24px;
        line-height: 32px;
    }

    .section-label {
        font-size: 16px;
    }

    .section-description {
        font-size: 16px;
        line-height: 26px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-description {
        font-size: 14px;
        line-height: 22px;
    }

}


/* Responsive 4 EXPERT MODES */

@media (max-width: 768px) {

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
        line-height: 36px;
    }

    .section-description {
        font-size: 18px;
        line-height: 28px;
    }

    .loadbt {
        display: block;
        padding: 0 15px;
    }

    .modes-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 20px;
        margin: 30px auto 0;
    }

    .mode-card {
        text-align: center;
    }

    .mode-icon {
        margin: 0 auto;
    }

    .section-cta.nosted {
        text-align: center;
        margin-top: 10px;
    }
}


/* ================= RESPONSIVE INTELLIGENT WORKFLOW ================= */

@media (max-width:1024px) {

    .smart-query-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .inteligentworkflow .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width:768px) {

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
        line-height: 36px;
    }

    .section-description {
        font-size: 18px;
        line-height: 28px;
    }

    .query-feature-description {
        max-width: 100%;
    }


}

@media (max-width:480px) {

    .section-title {
        font-size: 24px;
        line-height: 32px;
    }

    .section-description {
        font-size: 16px;
        line-height: 26px;
    }

    .section-label {
        font-size: 16px;
    }

}


/* ================= RESPONSIVE DATA SECURITY ================= */

@media (max-width:1280px) {

    .security-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

}

@media (max-width:768px) {

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
        line-height: 36px;
    }

    .section-description {
        font-size: 18px;
        line-height: 28px;
    }

    .security-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .security-card {
        text-align: center;
    }

    .security-icon {
        margin: 0 auto 20px;
    }

    .whiteflow .container {
        padding: 0 20px;
    }
    .box a {
    font-size: 17px;
}
}

@media (max-width:480px) {

    .section-label {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
        line-height: 32px;
    }

    .section-description {
        font-size: 16px;
        line-height: 26px;
    }

}


/*======================= Responsive Stop Wasting Hours on Manual Time Studies. ======================= */

@media (max-width: 1024px) {
    .cta-title {
        font-size: 42px;
        line-height: 48px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .cta-title {
        font-size: 32px;
        line-height: 40px;
    }

    .cta-description {
        font-size: 18px;
        line-height: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .cta-title {
        font-size: 26px;
        line-height: 34px;
    }

    .cta-description {
        font-size: 16px;
        line-height: 26px;
    }

    .section-cta-dark {
        padding: 80px 0;
    }
}


/* ================= RESPONSIVE FOOTER ================= */

/* 1280px */
@media (max-width: 1280px) {
    .container {
        padding: 0 40px;
    }

    .footer-content {
        padding: 0 80px;
        gap: 60px;
    }

    .footer-columns {
        gap: 70px;
    }
}

/* 1024px */
@media (max-width: 1024px) {
    .footer-content {
        padding: 0 50px;
        gap: 50px;
        text-align: center;
    }

    .footer-columns {
        gap: 50px;
    }
}

/* 768px */
@media (max-width: 768px) {
    .footer {
        padding: 0;
    }

    .footer-logo img {
        margin: 30px auto;
    }
.footer-bottom {
    margin-top: 0px;
}
    .footer-content {
        flex-direction: column;
        padding: 40px 30px;
        gap: 40px;
        text-align: center;
    }

    .footer-columns {
        flex-direction: column;
        gap: 35px;
    }

    .footer-bottom {
        padding: 25px 0;
    }
}

/* 375px */
@media (max-width: 375px) {
    .footer-content {
        padding: 0 20px;
        gap: 30px;
    }

    .logo-placeholder-footer {
        width: 100px;
        height: 128px;
    }

    .footer-columns {
        gap: 30px;
    }

    .footer-heading {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-bottom {
        margin-top: 40px;
        padding: 20px 0;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}