/* =========================================================
   SEA MARINE WEBSITE
   CLEAN RESPONSIVE CSS
   NAVBAR + FOOTER REMOVED
   DUPLICATE SYSTEM REMOVED
   ALL DEVICES SUPPORTED
========================================================= */


/* =========================================================
   GOOGLE FONTS
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');


/* =========================================================
   GLOBAL RESET
========================================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-width: 320px;
    margin: 0;
    padding: 0;

    font-family: 'Poppins', sans-serif;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(0, 139, 180, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 75%,
            rgba(0, 91, 130, 0.12),
            transparent 30%
        ),
        #071a2c;

    line-height: 1.7;

    overflow-x: hidden;
}

img,
video,
iframe {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: 'Poppins', sans-serif;
}

button {
    cursor: pointer;
}

section {
    width: 100%;
}

.container,
.container1,
.gallery-container,
.service-container,
.product-grid,
.counter-box,
.why-container,
.table-grid,
.reconditioning-container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   CUSTOM SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #061624;
}

::-webkit-scrollbar-thumb {
    background: #0dbbff;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: #33d2ff;
}


/* =========================================================
   COMMON TITLE
========================================================= */

.title {
    width: 100%;
    text-align: center;
    margin-bottom: clamp(35px, 5vw, 70px);
}

.title h5 {
    color: #18b8ff;
    font-size: clamp(12px, 1.2vw, 18px);
    letter-spacing: clamp(2px, 0.3vw, 4px);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.title h2 {
    color: #ffffff;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title p {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;

    color: #d7e6f2;
    font-size: clamp(14px, 1.3vw, 18px);
    line-height: 1.8;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    width: 100%;
    min-height: 100vh;
    min-height: 100svh;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(2, 15, 35, 0.60),
            rgba(2, 15, 35, 0.75)
        );
       

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.overlay {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.15);

    pointer-events: none;
}


/* =========================================================
   HERO LIGHT
========================================================= */

.hero::before {
    content: "";

    position: absolute;

    left: -20%;
    top: -20%;

    width: 140%;
    height: 140%;

    background:
        radial-gradient(
            circle,
            rgba(24, 184, 255, 0.12),
            transparent 70%
        );

    animation: rotateLight 18s linear infinite;

    pointer-events: none;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: absolute;

    top: 55%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: min(900px, 92%);

    text-align: center;

    color: #ffffff;

    z-index: 5;
}

.hero-content h5 {
    font-size: clamp(13px, 2.2vw, 40px);
    font-weight: 800;

    color: #27b8ff;

    letter-spacing: clamp(2px, 0.6vw, 8px);

    margin-bottom: 20px;

    text-transform: uppercase;

    animation: fadeDown 1.2s ease both;
}

.hero-content h1 {
    font-size: clamp(32px, 5.3vw, 78px);

    line-height: 1.15;

    font-weight: 800;

    margin-bottom: 30px;

    text-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35);

    animation: fadeUp 1.5s ease both;
}

.hero-content h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            #27b8ff
        );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    width: 100%;
    max-width: 800px;

    margin: 0 auto 40px;

    font-size: clamp(14px, 1.5vw, 20px);

    line-height: 1.8;

    color: #dbe9f6;

    animation: fadeUp 2s ease both;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-btn {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 20px;

    flex-wrap: wrap;
}

.btn1,
.btn2 {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 180px;

    padding: 15px 35px;

    border-radius: 50px;

    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 600;

    transition: 0.4s ease;
}

.btn1 {
    background:
        linear-gradient(
            90deg,
            #18b8ff,
            #54d2ff
        );

    color: #ffffff;

    box-shadow:
        0 15px 35px rgba(24, 184, 255, 0.35);
}

.btn1:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(24, 184, 255, 0.6);
}

.btn2 {
    border: 2px solid #28bcff;

    color: #ffffff;

    background: transparent;
}

.btn2:hover {
    background: #28bcff;

    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(24, 184, 255, 0.45);
}


/* =========================================================
   WAVE
========================================================= */

.wave {
    position: absolute;

    left: 0;
    bottom: -5px;

    width: 100%;

    z-index: 3;

    overflow: hidden;
}

.wave img {
    width: 100%;
    max-width: none;

    display: block;

    animation: waveMove 8s linear infinite;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    width: 100%;

    padding:
        clamp(70px, 8vw, 120px)
        clamp(20px, 6vw, 8%);

    background:
        linear-gradient(
            rgba(3, 17, 31, 0.75),
            rgba(3, 17, 31, 0.85)
        ),
        url("Photo/Ship/chris-pagan-sfjS-FglvU4-unsplash.jpg");

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.container1 {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: clamp(35px, 5vw, 70px);
}

.about-left,
.about-right {
    flex: 1 1 0;
    min-width: 0;
}

.img-box {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 25px;
}

.img-box img {
    width: 100%;

    aspect-ratio: 4 / 3;

    object-fit: cover;

    border-radius: 25px;

    transition: 0.6s ease;
}

.img-box:hover img {
    transform: scale(1.06);
}


/* =========================================================
   EXPERIENCE
========================================================= */

.experience {
    position: absolute;

    right: clamp(12px, 3vw, 30px);
    bottom: clamp(12px, 3vw, 30px);

    width: clamp(105px, 12vw, 180px);
    height: clamp(105px, 12vw, 180px);

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #18b8ff,
            #43d0ff
        );

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    color: #ffffff;

    box-shadow:
        0 20px 40px rgba(24, 184, 255, 0.45);
}

.experience h2 {
    font-size: clamp(30px, 4vw, 55px);
    font-weight: 700;
}

.experience p {
    font-size: clamp(11px, 1.2vw, 18px);
}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.about-right h5 {
    font-size: clamp(13px, 1.3vw, 18px);

    letter-spacing: 4px;

    color: #22bcff;

    margin-bottom: 20px;
}

.about-right h2 {
    font-size: clamp(30px, 4vw, 52px);

    line-height: 1.3;

    color: #ffffff;

    margin-bottom: 25px;
}

.about-right p {
    font-size: clamp(14px, 1.3vw, 18px);

    line-height: 1.9;

    color: #d7e8f4;

    margin-bottom: 35px;
}


/* =========================================================
   ABOUT FEATURES
========================================================= */

.about-features {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;

    margin-bottom: 35px;
}

.feature-card {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 20px;

    background: rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-radius: 18px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition: 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 40px rgba(24, 184, 255, 0.25);
}

.icon {
    width: 60px;
    height: 60px;

    flex: 0 0 60px;

    background: #18b8ff;

    border-radius: 50%;

    display: flex;

    justify-content: center;
    align-items: center;

    font-size: 25px;

    color: #ffffff;
}

.text {
    min-width: 0;
}

.text h4 {
    font-size: clamp(16px, 1.5vw, 22px);

    color: #ffffff;

    margin-bottom: 8px;
}

.text p {
    font-size: 14px;

    line-height: 1.7;

    color: #cfdde9;

    margin: 0;
}


/* =========================================================
   ABOUT BUTTON
========================================================= */

.about-btn {
    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

.btn11 {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 15px 35px;

    border-radius: 50px;

    font-size: 17px;

    font-weight: 600;

    background:
        linear-gradient(
            90deg,
            #18b8ff,
            #54d2ff
        );

    color: #ffffff;

    box-shadow:
        0 15px 35px rgba(24, 184, 255, 0.35);

    transition: 0.4s ease;
}

.btn11:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(24, 184, 255, 0.6);
}

.about-btn i {
    margin-left: 10px;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    width: 100%;

    padding:
        clamp(70px, 8vw, 110px)
        clamp(20px, 6vw, 8%);

    background: #03111f;
}

.service-heading {
    width: 100%;

    text-align: center;

    margin-bottom:
        clamp(40px, 5vw, 60px);
}

.service-heading h5 {
    font-size: clamp(13px, 1.3vw, 18px);

    color: #18b8ff;

    letter-spacing: 4px;

    margin-bottom: 15px;

    text-transform: uppercase;
}

.service-heading h2 {
    font-size: clamp(30px, 4vw, 52px);

    color: #ffffff;

    line-height: 1.2;

    margin-bottom: 20px;
}

.service-heading p {
    width: 100%;
    max-width: 700px;

    margin: 0 auto;

    font-size: clamp(14px, 1.3vw, 18px);

    color: #d4e3ef;

    line-height: 1.8;
}


/* =========================================================
   SERVICE GRID
========================================================= */

.service-container {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: clamp(18px, 2vw, 30px);

    align-items: stretch;
}

.service-card {
    position: relative;

    min-width: 0;

    background: rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-radius: 22px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.25);

    transition: 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 20px 45px rgba(24, 184, 255, 0.35),
        0 0 30px rgba(24, 184, 255, 0.12);
}

.service-img {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.6s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.08);
}

.service-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    justify-content: center;
    align-items: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.10),
            rgba(0, 0, 0, 0.65)
        );

    opacity: 0;

    transition: 0.4s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    font-size: clamp(40px, 4vw, 60px);

    color: #ffffff;

    animation:
        iconFloat 2s infinite ease-in-out;
}

.service-content {
    padding: clamp(20px, 2vw, 30px);

    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: clamp(21px, 2vw, 28px);

    line-height: 1.3;

    color: #ffffff;

    margin-bottom: 12px;
}

.service-content p {
    font-size: 15px;

    line-height: 1.75;

    color: #d6e5f2;

    margin-bottom: 20px;
}

.service-content a {
    display: inline-flex;

    align-items: center;

    width: fit-content;

    font-size: 15px;

    font-weight: 600;

    color: #18b8ff;

    transition: 0.4s ease;
}

.service-content a i {
    margin-left: 8px;

    transition: 0.4s ease;
}

.service-content a:hover {
    color: #5ed5ff;
}

.service-content a:hover i {
    transform: translateX(6px);
}


/* =========================================================
   SERVICE PAGE TITLE
========================================================= */

.service-title {
    position: relative;

    width: 100%;
    min-height: 430px;

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 100px 20px 50px;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(3, 18, 35, 0.78),
            rgba(3, 18, 35, 0.85)
        );

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.service-title::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at top,
            rgba(0, 191, 255, 0.18),
            transparent 60%
        );
}

.service-title::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(0, 191, 255, 0.08);

    filter: blur(80px);

    top: -120px;
    right: -120px;
}

.sub-title {
    position: relative;

    z-index: 2;

    color: #00c6ff;

    font-size: clamp(11px, 1.2vw, 17px);

    letter-spacing: clamp(2px, .5vw, 8px);

    font-weight: 600;

    margin-bottom: 20px;

    text-transform: uppercase;
}

.service-title h1 {
    position: relative;

    z-index: 2;

    color: #ffffff;

    font-size: clamp(34px, 5vw, 72px);

    line-height: 1.15;

    font-weight: 800;

    margin-bottom: 30px;

    text-shadow:
        0 5px 15px rgba(0, 0, 0, 0.4);
}


/* =========================================================
   DIVIDER
========================================================= */

.divider {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    margin: 25px 0;
}

.divider span {
    width: clamp(40px, 6vw, 90px);
    height: 2px;

    background: #00c6ff;
}

.divider i {
    color: #00c6ff;

    font-size: 26px;

    animation: anchor 3s infinite;
}


/* =========================================================
   SERVICE HERO / WORK
========================================================= */

.service-hero,
.service-work {
    position: relative;

    width: 100%;

    padding:
        clamp(50px, 6vw, 70px)
        20px
        25px;

    text-align: center;
}

.service-hero h5 {
    font-size: clamp(12px, 1.2vw, 16px);

    letter-spacing: clamp(3px, .5vw, 8px);

    color: #23bfff;

    margin-bottom: 20px;

    text-transform: uppercase;
}

.service-hero h1,
.service-work h1 {
    font-size: clamp(38px, 5vw, 72px);

    font-family:
        'Cormorant Garamond',
        serif;

    font-weight: 700;

    line-height: 1.1;

    margin-bottom: 20px;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            #1fc7ff
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.service-hero p,
.service-work p {
    width: 100%;
    max-width: 700px;

    margin: 0 auto;

    font-size: clamp(14px, 1.4vw, 19px);

    line-height: 1.8;

    color: #d8e5f2;
}


/* =========================================================
   SERVICE GALLERY
========================================================= */

.service-gallery {
    width: 100%;

    padding:
        clamp(50px, 7vw, 80px)
        0;
}

.gallery-container {
    width: 92%;
    max-width: 1400px;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: clamp(16px, 2vw, 30px);
}

.gallery-box {
    position: relative;

    overflow: hidden;

    cursor: pointer;

    background: #061e35;

    border: 6px solid #ffffff;

    border-radius: 18px;

    transition: 0.4s ease;

    box-shadow:
        inset 0 0 0 2px rgba(255, 255, 255, 0.20),
        0 15px 40px rgba(0, 0, 0, 0.35);
}

.gallery-box::before {
    content: "";

    position: absolute;

    inset: 6px;

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 12px;

    pointer-events: none;

    z-index: 2;
}

.gallery-box img {
    width: 100%;

    aspect-ratio: 4 / 5;

    object-fit: cover;

    border-radius: 12px;

    transition: 0.5s ease;
}

.gallery-box:hover {
    transform: translateY(-8px);

    border-color: #2dbdff;

    box-shadow:
        0 0 20px rgba(45, 189, 255, 0.45),
        inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.gallery-box:hover img {
    transform: scale(1.06);
}


/* =========================================================
   WHY SECTION
========================================================= */

.why {
    width: 100%;

    padding:
        clamp(60px, 7vw, 90px)
        0;
}

.why-container {
    width: 92%;
    max-width: 1400px;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: clamp(35px, 5vw, 60px);

    align-items: center;
}

.why-left h5 {
    color: #23c4ff;

    font-size: 15px;

    letter-spacing: 5px;

    margin-bottom: 15px;
}

.why-left h2 {
    font-size: clamp(38px, 5vw, 60px);

    font-family:
        'Cormorant Garamond',
        serif;

    line-height: 1.1;

    margin-bottom: 20px;
}

.why-left p {
    font-size: clamp(14px, 1.3vw, 18px);

    color: #d2deeb;

    margin-bottom: 35px;

    line-height: 1.8;
}


/* =========================================================
   TIMELINE
========================================================= */

.timeline {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.line-card {
    display: flex;

    gap: 20px;

    align-items: center;

    padding: 22px;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 18px;

    transition: 0.4s ease;
}

.line-card:hover {
    transform: translateX(8px);

    border-color: #20c7ff;

    box-shadow:
        0 15px 35px rgba(0, 170, 255, 0.2);
}

.circle {
    width: 60px;
    height: 60px;

    flex: 0 0 60px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #009cff,
            #00d8ff
        );

    display: flex;

    justify-content: center;
    align-items: center;

    font-size: 23px;

    color: #ffffff;
}

.line-card h3 {
    font-size: clamp(18px, 1.8vw, 24px);

    margin-bottom: 6px;
}

.line-card p {
    font-size: 15px;

    margin: 0;

    color: #cfdbe8;
}


/* =========================================================
   WHY IMAGE
========================================================= */

.why-right {
    display: flex;

    justify-content: center;
    align-items: center;
}

.image-box {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 5;

    max-height: 650px;

    border-radius: 35px;

    overflow: hidden;

    border: 2px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(0, 180, 255, 0.15);
}

.image-box img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.6s ease;
}

.image-box:hover img {
    transform: scale(1.05);
}

.experience-box {
    position: absolute;

    bottom: 25px;
    left: 25px;

    padding: 20px 28px;

    background:
        rgba(0, 25, 50, 0.8);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-radius: 20px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    text-align: center;
}

.experience-box h2 {
    font-size: clamp(35px, 4vw, 55px);

    color: #20c7ff;

    margin-bottom: 5px;
}

.experience-box p {
    font-size: 16px;

    color: #ffffff;
}


/* =========================================================
   COUNTER
========================================================= */

.counter {
    width: 100%;

    padding:
        clamp(60px, 7vw, 80px)
        0;
}

.counter-box {
    width: 92%;
    max-width: 1400px;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 25px;
}

.counter-item {
    padding: 30px 20px;

    text-align: center;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 20px;

    transition: 0.4s ease;
}

.counter-item:hover {
    transform: translateY(-8px);

    border-color: #23c4ff;

    box-shadow:
        0 20px 40px rgba(0, 180, 255, 0.2);
}

.counter-item h2 {
    font-size: clamp(35px, 4vw, 58px);

    font-weight: 700;

    color: #24c4ff;

    margin-bottom: 10px;
}

.counter-item p {
    font-size: clamp(13px, 1.2vw, 18px);

    color: #d9e5f2;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.section-title {
    width: 92%;
    max-width: 1400px;

    margin:
        0 auto
        clamp(35px, 5vw, 50px);

    text-align: center;
}

.section-title h5 {
    font-size: 15px;

    letter-spacing: 6px;

    color: #24c4ff;

    margin-bottom: 15px;
}

.section-title h2 {
    font-size: clamp(35px, 5vw, 70px);

    font-family:
        'Cormorant Garamond',
        serif;

    color: #ffffff;

    line-height: 1.1;
}


/* =========================================================
   BENEFITS
========================================================= */

.benefits {
    width: 100%;

    padding:
        clamp(55px, 7vw, 70px)
        0;
}

.table-grid {
    width: 92%;
    max-width: 1400px;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 30px;
}


/* =========================================================
   GLASS TABLE
========================================================= */

.glass-table {
    position: relative;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 28px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.35);

    transition: 0.45s ease;
}

.glass-table:hover {
    transform: translateY(-8px);

    border-color: #1fc8ff;

    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(0, 190, 255, 0.18);
}

.glass-table::before {
    content: "";

    position: absolute;

    top: -120px;
    right: -120px;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 183, 255, 0.25),
            transparent 70%
        );
}

.glass-table::after {
    content: "";

    position: absolute;

    left: -150%;
    top: 0;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.12),
            transparent
        );

    transform: skewX(-25deg);

    transition: 1s;

    pointer-events: none;
}

.glass-table:hover::after {
    left: 180%;
}


/* =========================================================
   TABLE HEAD
========================================================= */

.table-head {
    position: relative;

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 25px;

    background:
        linear-gradient(
            90deg,
            rgba(0, 174, 255, 0.20),
            rgba(255, 255, 255, 0.02)
        );

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);

    overflow: hidden;
}

.table-head::before {
    content: "";

    position: absolute;

    left: -120%;
    top: 0;

    width: 60%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent
        );

    transform: skewX(-25deg);

    animation: shine 5s infinite;
}

.table-head i {
    width: 60px;
    height: 60px;

    flex: 0 0 60px;

    display: flex;

    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #009cff,
            #00d9ff
        );

    color: #ffffff;

    font-size: 25px;
}

.table-head h3 {
    font-size: clamp(24px, 2.5vw, 34px);

    font-family:
        'Cormorant Garamond',
        serif;

    font-weight: 700;

    color: #ffffff;

    margin-bottom: 4px;
}

.table-head p {
    font-size: 12px;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #7edcff;
}


/* =========================================================
   TABLE
========================================================= */

.glass-table table {
    width: 100%;

    border-collapse: collapse;
}

.glass-table tr {
    transition: 0.35s;
}

.glass-table tr:hover {
    background: rgba(0, 180, 255, 0.08);
}

.glass-table td {
    padding: 16px 20px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.05);

    font-size: 15px;

    color: #dbe7f3;
}

.glass-table tr:last-child td {
    border-bottom: none;
}

.glass-table td:first-child {
    display: flex;

    align-items: center;

    gap: 12px;
}

.glass-table td:first-child i {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;

    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: rgba(0, 183, 255, 0.12);

    color: #22c5ff;

    font-size: 14px;

    transition: 0.35s;
}

.glass-table tr:hover td:first-child i {
    background: #21c6ff;

    color: #ffffff;

    transform: rotate(360deg);
}

.glass-table td:last-child {
    width: 70px;

    text-align: center;

    font-weight: 700;

    font-size: 17px;

    color: #1fc8ff;
}

.glass-table tr:hover td {
    color: #ffffff;
}


/* =========================================================
   RECONDITIONING TITLE
========================================================= */

.reconditioning-title {
    width: 100%;

    padding:
        clamp(65px, 8vw, 100px)
        20px
        clamp(45px, 6vw, 70px);

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(0, 139, 180, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 75%,
            rgba(0, 91, 130, 0.12),
            transparent 30%
        ),
        #071a2c;

    color: #ffffff;

    text-align: center;

    position: relative;

    overflow: hidden;
}

.reconditioning-title::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    top: -350px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        rgba(0, 180, 230, 0.10);

    filter: blur(70px);

    pointer-events: none;
}

.reconditioning-title-inner {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
}

.reconditioning-subtitle {
    margin: 0 0 14px;

    font-size: clamp(11px, 1vw, 14px);

    font-weight: 700;

    letter-spacing:
        clamp(2px, .4vw, 5px);

    color: #13b9e8;

    text-transform: uppercase;

    text-shadow:
        0 0 15px rgba(19, 185, 232, 0.25);
}

.reconditioning-title h1 {
    margin: 0;

    font-size:
        clamp(32px, 5vw, 58px);

    line-height: 1.15;

    font-weight: 800;

    background:
        linear-gradient(
            90deg,
            #d8e2e8 0%,
            #8db9c9 35%,
            #20b6df 70%,
            #08a8d7 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.reconditioning-divider {
    width: 180px;

    margin: 28px auto 0;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;
}

.reconditioning-divider span {
    width: 55px;
    height: 2px;

    display: block;

    background:
        linear-gradient(
            90deg,
            #0b8fb8,
            #16c2ed
        );

    box-shadow:
        0 0 10px rgba(0, 190, 240, 0.45);
}

.reconditioning-divider i {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #17364e,
            #071a2b
        );

    color: #11b8e8;

    font-size: 16px;

    border:
        1px solid rgba(20, 190, 235, 0.25);

    box-shadow:
        0 0 20px rgba(0, 180, 230, 0.20);
}


/* =========================================================
   RECONDITIONING SECTION
========================================================= */

.reconditioning-section {
    position: relative;

    width: 100%;

    padding:
        clamp(55px, 7vw, 80px)
        20px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(0, 145, 190, 0.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(0, 102, 150, 0.10),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #071a2c 0%,
            #09283d 50%,
            #071a2c 100%
        );

    overflow: hidden;
}

.reconditioning-section::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    top: 50px;
    left: -200px;

    border-radius: 50%;

    background:
        rgba(0, 180, 230, 0.10);

    filter: blur(90px);

    pointer-events: none;
}

.reconditioning-section::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -180px;
    bottom: 50px;

    border-radius: 50%;

    background:
        rgba(0, 125, 180, 0.12);

    filter: blur(90px);

    pointer-events: none;
}

.reconditioning-container {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1250px;

    margin: 0 auto;
}

.reconditioning-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: clamp(18px, 2vw, 28px);

    align-items: stretch;
}

.reconditioning-card {
    position: relative;

    background:
        linear-gradient(
            145deg,
            rgba(31, 58, 77, 0.96),
            rgba(8, 27, 42, 0.98)
        );

    border-radius: 18px;

    overflow: hidden;

    border:
        1px solid rgba(101, 191, 222, 0.16);

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.reconditioning-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 400px;

    top: -120px;
    left: -75px;

    transform: rotate(28deg);

    background:
        linear-gradient(
            180deg,
            rgba(150, 180, 195, 0.12),
            rgba(150, 180, 195, 0.01)
        );

    pointer-events: none;

    z-index: 1;
}

.reconditioning-card:hover {
    transform: translateY(-10px);

    border-color:
        rgba(0, 190, 240, 0.45);

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.40),
        0 0 30px rgba(0, 180, 230, 0.13);
}

.reconditioning-image {
    width: 100%;

    aspect-ratio: 16 / 10;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #17364c,
            #0b2235
        );
}

.reconditioning-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform .5s ease,
        filter .5s ease;
}

.reconditioning-card:hover
.reconditioning-image img {
    transform: scale(1.06);

    filter:
        brightness(1.05)
        saturate(1.05);
}

.reconditioning-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(7, 26, 44, 0.05),
            rgba(7, 26, 44, 0.20)
        );

    pointer-events: none;
}

.reconditioning-content {
    position: relative;

    padding:
        45px
        25px
        28px;

    text-align: center;

    background:
        linear-gradient(
            180deg,
            rgba(19, 45, 64, 0.96),
            rgba(7, 25, 40, 0.99)
        );

    min-height: 245px;
}

.reconditioning-icon {
    width: 58px;
    height: 58px;

    position: absolute;

    top: -29px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #087fa7,
            #0bb9dd
        );

    color: #ffffff;

    border: 5px solid #0b2235;

    box-shadow:
        0 8px 25px rgba(0, 174, 215, 0.30),
        0 0 20px rgba(0, 180, 230, 0.15);

    z-index: 3;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.reconditioning-card:hover
.reconditioning-icon {
    transform:
        translateX(-50%)
        translateY(-4px);

    box-shadow:
        0 10px 30px rgba(0, 190, 240, 0.40),
        0 0 25px rgba(0, 190, 240, 0.20);
}

.reconditioning-icon i {
    font-size: 19px;
}

.reconditioning-content h2 {
    margin: 0;

    min-height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 20px;

    line-height: 1.35;

    font-weight: 700;

    color: #ffffff;
}

.reconditioning-line {
    width: 45px;
    height: 3px;

    margin: 15px auto 18px;

    background:
        linear-gradient(
            90deg,
            #087fa7,
            #20c7e8
        );

    border-radius: 10px;

    box-shadow:
        0 0 10px rgba(0, 180, 230, 0.25);
}

.reconditioning-content p {
    margin: 0 0 22px;

    font-size: 14px;

    line-height: 1.8;

    color: #a9bfcb;
}

.reconditioning-content a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    font-size: 13px;

    font-weight: 600;

    color: #20c3e8;

    transition:
        color .3s ease,
        transform .3s ease;
}

.reconditioning-content a i {
    font-size: 12px;

    transition: transform .3s ease;
}

.reconditioning-content a:hover {
    color: #ffffff;

    transform: translateX(3px);

    text-shadow:
        0 0 12px rgba(0, 190, 240, 0.45);
}

.reconditioning-content a:hover i {
    transform: translateX(5px);
}


/* =========================================================
   PRODUCTS
========================================================= */

.products {
    width: 100%;

    padding:
        clamp(70px, 8vw, 120px)
        clamp(20px, 6vw, 8%);

    background: #071d33;
}

.product-heading {
    text-align: center;

    margin-bottom:
        clamp(40px, 5vw, 70px);
}

.product-heading h5 {
    color: #18b8ff;

    font-size: clamp(13px, 1.3vw, 18px);

    letter-spacing: 4px;

    margin-bottom: 15px;
}

.product-heading h2 {
    font-size: clamp(30px, 4vw, 52px);

    color: #ffffff;

    margin-bottom: 20px;
}

.product-heading p {
    width: 100%;
    max-width: 700px;

    margin: 0 auto;

    color: #d8e5ef;

    font-size: clamp(14px, 1.3vw, 18px);

    line-height: 1.8;
}

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: clamp(18px, 2vw, 30px);
}

.product-card {
    min-width: 0;

    background: rgba(255, 255, 255, 0.05);

    border-radius: 20px;

    overflow: hidden;

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    transition: 0.5s ease;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.25);
}

.product-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 20px 45px rgba(24, 184, 255, 0.35);
}

.product-image {
    position: relative;

    overflow: hidden;

    width: 100%;

    aspect-ratio: 16 / 10;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    justify-content: center;
    align-items: center;

    background:
        rgba(3, 18, 35, 0.65);

    opacity: 0;

    transition: 0.4s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay a {
    width: 60px;
    height: 60px;

    background: #18b8ff;

    border-radius: 50%;

    display: flex;

    justify-content: center;
    align-items: center;

    color: #ffffff;

    font-size: 22px;

    transition: 0.4s;
}

.product-overlay a:hover {
    transform:
        rotate(90deg)
        scale(1.1);
}

.product-info {
    padding: 25px;

    text-align: center;
}

.product-info h3 {
    font-size: clamp(20px, 2vw, 26px);

    color: #ffffff;

    margin-bottom: 10px;
}

.product-info span {
    color: #18b8ff;

    font-size: 15px;

    letter-spacing: 1px;
}


/* =========================================================
   READ MORE BUTTON
========================================================= */

.read-btn {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 20px;

    padding: 12px 28px;

    color: #ffffff;

    font-size: 15px;

    font-weight: 600;

    border-radius: 40px;

    background:
        linear-gradient(
            135deg,
            #00a8ff,
            #0077ff
        );

    border:
        1px solid rgba(255, 255, 255, 0.15);

    box-shadow:
        0 10px 25px rgba(0, 145, 255, 0.30);

    transition: 0.4s ease;

    overflow: hidden;
}

.read-btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255, 255, 255, 0.45),
            transparent
        );

    transition: 0.8s;
}

.read-btn:hover::before {
    left: 120%;
}

.read-btn i {
    transition: 0.4s;
}

.read-btn:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0, 170, 255, 0.45);
}

.read-btn:hover i {
    transform: translateX(8px);
}


/* =========================================================
   INQUIRY
========================================================= */

.bdy6 {
    width: 100%;

    min-height: 100vh;
    min-height: 100svh;

    background:
        linear-gradient(
            rgba(3, 18, 35, 0.45),
            rgba(3, 18, 35, 0.55)
        ),
        url("Photo/Ship/nw12.avif");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.overlay6 {
    width: 100%;

    min-height: 100vh;
    min-height: 100svh;

    display: flex;

    justify-content: flex-end;
    align-items: center;

    padding:
        70px
        clamp(20px, 8vw, 8%);
}

.inquiry-section {
    width: 100%;
    max-width: 700px;
}

.content6 {
    width: 100%;

    padding: clamp(25px, 4vw, 40px);

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border:
        1px solid rgba(255, 255, 255, 0.10);
}

.content6 h1 {
    text-align: center;

    font-size: clamp(30px, 4vw, 48px);

    color: #ffffff;

    margin-bottom: 30px;
}

.content6 form {
    display: flex;

    flex-direction: column;
}

.content6 label {
    color: #ffffff;

    margin-bottom: 8px;

    font-weight: 600;
}

.content6 input,
.content6 textarea {
    width: 100%;

    padding: 13px 15px;

    margin-bottom: 20px;

    border:
        1px solid rgba(255, 255, 255, 0.25);

    border-radius: 8px;

    outline: none;

    font-size: 16px;

    background:
        rgba(255, 255, 255, 0.95);

    color: #111111;
}

.content6 textarea {
    resize: vertical;

    min-height: 130px;
}

.button6 {
    width: min(200px, 100%);

    margin: 0 auto;

    padding: 13px 20px;

    background: #001f54;

    color: #ffffff;

    border: none;

    border-radius: 8px;

    cursor: pointer;

    font-size: 16px;

    transition: 0.4s;
}

.button6:hover {
    background: #00aeea;

    transform: translateY(-4px);

    box-shadow:
        0 10px 30px rgba(0, 174, 234, 0.35);
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.bg-circle {
    position: fixed;

    border-radius: 50%;

    filter: blur(120px);

    opacity: 0.28;

    z-index: -1;

    pointer-events: none;
}

.one {
    width: 450px;
    height: 450px;

    background: #009dff;

    left: -180px;
    top: -150px;

    animation:
        float1 10s infinite alternate;
}

.two {
    width: 400px;
    height: 400px;

    background: #005eff;

    right: -120px;
    top: 180px;

    animation:
        float2 12s infinite alternate;
}

.three {
    width: 350px;
    height: 350px;

    background: #00d9ff;

    bottom: -120px;
    left: 40%;

    animation:
        float3 9s infinite alternate;
}


/* =========================================================
   PARTICLES
========================================================= */

.particle {
    position: absolute;

    bottom: -20px;

    width: 6px;
    height: 6px;

    background: #18c8ff;

    border-radius: 50%;

    opacity: 0.35;

    animation:
        particleMove linear infinite;

    pointer-events: none;
}


/* =========================================================
   REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(60px);

    transition: 1s ease;
}

.reveal.active {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateLight {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-20px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes iconFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes anchor {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes shine {
    0% {
        left: -120%;
    }

    100% {
        left: 180%;
    }
}

@keyframes float1 {
    100% {
        transform: translateY(60px);
    }
}

@keyframes float2 {
    100% {
        transform: translateX(-60px);
    }
}

@keyframes float3 {
    100% {
        transform: translateY(-50px);
    }
}

@keyframes particleMove {
    0% {
        transform:
            translateY(0)
            scale(1);

        opacity: 0;
    }

    20% {
        opacity: 0.4;
    }

    100% {
        transform:
            translateY(-900px)
            scale(0.2);

        opacity: 0;
    }
}


/* =========================================================
   TABLET
   1024px
========================================================= */

@media (max-width: 1024px) {

    .container,
    .container1 {
        width: 92%;
    }

    .service-container {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .product-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .gallery-container {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .counter-box {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .reconditioning-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .table-grid {
        grid-template-columns: 1fr;
    }

    .why-container {
        grid-template-columns: 1fr;
    }

    .why-left {
        text-align: center;
    }

    .why-right {
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
    }

    .container1 {
        flex-direction: column;
    }

    .about-left,
    .about-right {
        width: 100%;
    }

    .about-right {
        text-align: center;
    }

    .about-features {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .image-box {
        width: 100%;
    }
}


/* =========================================================
   MOBILE
   767px
========================================================= */

@media (max-width: 767px) {

    html {
        scroll-behavior: auto;
    }

    body {
        min-width: 320px;
    }

    .container,
    .container1,
    .gallery-container,
    .counter-box,
    .why-container,
    .table-grid {
        width: 92%;
    }

    .hero,
    .service-title,
    .bdy6 {
        background-attachment: scroll;
    }

    .hero-content {
        top: 50%;
        width: 92%;
    }

    .hero-content h1 {
        margin-bottom: 18px;
    }

    .hero-content p {
        margin-bottom: 25px;
    }

    .hero-btn {
        flex-direction: column;
        gap: 12px;
    }

    .btn1,
    .btn2 {
        width: min(230px, 90vw);
        padding: 13px 20px;
    }

    .about {
        padding-left: 4%;
        padding-right: 4%;
    }

    .container1 {
        gap: 35px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 16px;
    }

    .icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        font-size: 21px;
    }

    .about-btn {
        flex-direction: column;
        align-items: center;
    }

    .btn11 {
        width: min(230px, 90vw);
    }

    .services,
    .products {
        padding-left: 5%;
        padding-right: 5%;
    }

    .service-container,
    .product-grid,
    .reconditioning-grid {
        grid-template-columns: 1fr;
    }

    .service-img,
    .product-image,
    .reconditioning-image {
        aspect-ratio: 16 / 10;
    }

    .service-content {
        text-align: center;
    }

    .service-content a {
        margin-left: auto;
        margin-right: auto;
    }

    .service-title {
        min-height: 350px;
    }

    .service-hero,
    .service-work {
        padding-left: 18px;
        padding-right: 18px;
    }

    .gallery-container {
        width: 92%;
        grid-template-columns: 1fr;
    }

    .gallery-box img {
        aspect-ratio: 4 / 3;
    }

    .why {
        padding-left: 0;
        padding-right: 0;
    }

    .why-container {
        gap: 35px;
    }

    .image-box {
        aspect-ratio: 4 / 3;
    }

    .experience-box {
        left: 15px;
        bottom: 15px;
        padding: 15px 20px;
    }

    .counter-box {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

    .counter-item {
        padding: 22px 12px;
    }

    .table-grid {
        width: 92%;
    }

    .glass-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .glass-table table {
        min-width: 480px;
    }

    .table-head {
        padding: 20px;
    }

    .reconditioning-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .reconditioning-content {
        min-height: auto;
        padding:
            42px
            20px
            25px;
    }

    .reconditioning-content h2 {
        min-height: auto;
        font-size: 19px;
    }

    .overlay6 {
        justify-content: center;
        padding: 50px 18px;
    }

    .content6 {
        padding: 25px 20px;
    }
}


/* =========================================================
   SMALL MOBILE
   480px
========================================================= */

@media (max-width: 480px) {

    .title,
    .service-heading,
    .product-heading {
        margin-bottom: 35px;
    }

    .hero-content h5 {
        margin-bottom: 10px;
    }

    .hero-content h1 {
        font-size: 29px;
    }

    .hero-content p {
        font-size: 13px;
        line-height: 1.7;
    }

    .btn1,
    .btn2,
    .btn11 {
        width: 205px;
        padding: 12px 18px;
        font-size: 14px;
    }

    .about {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .experience {
        width: 100px;
        height: 100px;
    }

    .experience h2 {
        font-size: 30px;
    }

    .experience p {
        font-size: 11px;
    }

    .service-title {
        min-height: 320px;
        padding-top: 90px;
    }

    .service-title h1 {
        font-size: 31px;
    }

    .gallery-box {
        border-width: 4px;
    }

    .gallery-box img {
        aspect-ratio: 4 / 3;
    }

    .counter-box {
        grid-template-columns: 1fr;
    }

    .counter-item h2 {
        font-size: 34px;
    }

    .glass-table table {
        min-width: 450px;
    }

    .glass-table td {
        padding: 10px 8px;
        font-size: 12px;
    }

    .reconditioning-title {
        padding-top: 55px;
    }

    .reconditioning-title h1 {
        font-size: 31px;
    }

    .reconditioning-image {
        aspect-ratio: 16 / 10;
    }

    .reconditioning-content {
        padding-left: 18px;
        padding-right: 18px;
    }

    .content6 h1 {
        font-size: 30px;
    }
}


/* =========================================================
   EXTRA SMALL
   360px
========================================================= */

@media (max-width: 360px) {

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 12px;
    }

    .btn1,
    .btn2,
    .btn11 {
        width: 190px;
    }

    .service-title h1 {
        font-size: 28px;
    }

    .service-hero h1,
    .service-work h1 {
        font-size: 29px;
    }

    .section-title h2 {
        font-size: 27px;
    }

    .service-content h3 {
        font-size: 19px;
    }

    .service-content p {
        font-size: 12px;
    }

    .glass-table table {
        min-width: 420px;
    }
}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) and (pointer: coarse) {

    .service-card:hover,
    .product-card:hover,
    .gallery-box:hover,
    .feature-card:hover,
    .line-card:hover,
    .counter-item:hover,
    .glass-table:hover,
    .reconditioning-card:hover {
        transform: none;
    }

    .service-card:hover .service-img img,
    .product-card:hover .product-image img,
    .gallery-box:hover img,
    .image-box:hover img,
    .reconditioning-card:hover .reconditioning-image img {
        transform: none;
    }

    .service-overlay,
    .product-overlay {
        opacity: 1;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}