/* =====================================================
   RUDRA SHIPPING & LOGISTICS LLC
   Design System
   Version 1.0
===================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ==========================
   CSS VARIABLES
========================== */

:root{

    /* Brand Colors */

    --primary:#0F2D63;
    --primary-light:#1F4E8C;

    --secondary:#B13B3B;

    --white:#ffffff;

    --bg:#F7F9FC;

    --text:#1B1B1B;

    --text-light:#6B7280;

    --border:#E5E7EB;

    --success:#25D366;

    --shadow:
    0 10px 30px rgba(0,0,0,.08);

    --shadow-hover:
    0 20px 45px rgba(0,0,0,.12);

    --transition:.35s ease;

    --radius:18px;

    --container:1320px;

}

/* ==========================
   RESET
========================== */

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

html{

scroll-behavior:smooth;

}

body{

font-family:'Inter',sans-serif;

background:var(--bg);

color:var(--text);

line-height:1.7;

overflow-x:hidden;

}

/* ==========================
   TYPOGRAPHY
========================== */

h1,h2,h3,h4,h5,h6{

font-family:'Poppins',sans-serif;

font-weight:700;

line-height:1.2;

color:var(--primary);

}

h1{

font-size:64px;

}

h2{

font-size:48px;

}

h3{

font-size:32px;

}

h4{

font-size:24px;

}

p{

font-size:17px;

color:var(--text-light);

}

a{

text-decoration:none;

transition:var(--transition);

}

/* ==========================
   CONTAINER
========================== */

.container{

width:min(92%,var(--container));

margin:auto;

}

/* ==========================
   SECTIONS
========================== */

section{

padding:120px 0;

}

.section-title{

font-size:48px;

margin-bottom:18px;

}

.section-subtitle{

max-width:700px;

margin:auto;

}

/* ==========================
   BUTTONS
========================== */

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

gap:10px;

padding:16px 34px;

border-radius:12px;

font-weight:600;

transition:var(--transition);

cursor:pointer;

}

.btn-primary{

background:var(--secondary);

color:white;

}

.btn-primary:hover{

background:var(--primary);

transform:translateY(-3px);

box-shadow:var(--shadow-hover);

}

.btn-secondary{

border:2px solid var(--primary);

color:var(--primary);

background:white;

}

.btn-secondary:hover{

background:var(--primary);

color:white;

}

/* ==========================
   CARD
========================== */

.card{

background:white;

border-radius:18px;

padding:35px;

box-shadow:var(--shadow);

transition:var(--transition);

}

.card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-hover);

}

/* ==========================
   IMAGE
========================== */

img{

max-width:100%;

display:block;

}

/* ==========================
   UTILITIES
========================== */

.text-center{

text-align:center;

}

.mt-1{

margin-top:15px;

}

.mt-2{

margin-top:30px;

}

.mt-3{

margin-top:50px;

}

.mb-1{

margin-bottom:15px;

}

.mb-2{

margin-bottom:30px;

}

.mb-3{

margin-bottom:50px;

}

/* ==========================
   BACKGROUNDS
========================== */

.bg-light{

background:var(--bg);

}

.bg-white{

background:white;

}

.bg-primary{

background:var(--primary);

color:white;

}

.bg-primary h1,
.bg-primary h2,
.bg-primary h3{

color:white;

}

/* ==========================
   SCROLLBAR
========================== */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#EDF2F7;

}

::-webkit-scrollbar-thumb{

background:var(--primary);

border-radius:100px;

}

::-webkit-scrollbar-thumb:hover{

background:var(--secondary);

}

/* ==========================
   SELECTION
========================== */

::selection{

background:var(--secondary);

color:white;

}

/* ==========================
   NAVBAR
========================== */

.navbar {

    width:100%;
    background:#ffffff;
    position:sticky;
    top:0;
    z-index:9999;

    box-shadow:0 2px 10px rgba(0,0,0,0.06);

}
.nav-container {

    width:100%;
    padding:12px 40px;

    display:flex;
    align-items:center;

}

.brand {

    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;

}


.brand img {

    width:65px;
    height:auto;

}
.brand-name {

    font-size:18px;
    font-weight:700;
    white-space:nowrap;
    letter-spacing:0.3px;

}


.rudra {
    color:#0e376c; 
    font-weight: 700;  /* Blue from logo */

}


.logistics {
    color:#A53632;
    font-weight: 700;   /* Brand red */
}



/* Navigation */

.nav-menu {

    display:flex;
    align-items:center;
    gap:26px;
    margin-left:auto;
}


.nav-menu a {

    text-decoration:none;

    color:#010101;

    font-size:14px;

    font-weight:600;

    letter-spacing:0.2px;

    transition:0.3s ease;

}


.nav-menu a:hover {

    color:#a91b16;

}


/* Active */

.nav-menu .active {

    color:#000000;

}


/* CTA */

.quote-btn {

    background:#A53632;

    padding:10px 22px;

    border-radius:25px;

    color:white !important;

    font-size:14px !important;

}


.quote-btn:hover {

    background:#8e2c29;

}

/* ==========================
   HERO SECTION
========================== */

.hero {

    height: calc(100vh - 80px);

    min-height:650px;

    position:relative;

    display:flex;

    align-items:center;

    background-image:url("../assets/main.jpg");

    background-size:cover;

    background-position:center right;

    overflow:hidden;

}



/* Premium Brand Overlay */
.hero-overlay {

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(4, 4, 4, 0.85) 0%,
        rgba(0, 0, 0, 0.611) 45%,
        rgba(0, 0, 0, 0.17) 100%
    );

}
/* Container */


.hero-container {

    width:100%;

    max-width:1300px;

    margin:auto;

    padding:0 50px;

    position:relative;

    z-index:2;

}



/* Content */


.hero-content {

    max-width:680px;

    color:white;
}


/* Small Label */


.hero-tag {

    color:#d13b35;

    font-size:15px;

    font-weight:700;

    letter-spacing:2.5px;

    margin-bottom:20px;

}



/* Heading */
.hero-content h1 {
    font-size:56px;
    line-height:1.15;
    font-weight:800;
    letter-spacing:-0.5px;
    color:white;
}

.hero-content h1 span {

    display:block;

    color:#f6dc34;

    text-shadow:
    0 0 10px rgba(165, 152, 50, 0.35);

}

/* Description */
.hero-description {

color:#f5f5f5;

text-shadow:
0 2px 8px rgba(0,0,0,0.5);

}
/* Buttons */


.hero-buttons {

    display:flex;

    gap:18px;

}



.primary-btn {
    background:#A53632;
    color:white;
    padding:15px 35px;
    border-radius:30px;
    text-decoration:none;
    font-weight:700;
    box-shadow:0 10px 25px rgba(92, 13, 11, 0.35);
    transform:none;
    background:linear-gradient(
135deg,
#3c0402,
#6e0e0a
);

color:white;

box-shadow:
0 8px 25px rgba(165,54,50,0.45);
}

.primary-btn:hover {

    transform:none;
    color:white;
    background:none;
    border:2px solid rgba(255,255,255,0.8);

}

.secondary-btn {
    border:2px solid rgba(255,255,255,0.8);
    color:white;
    padding:13px 32px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s ease;
}



.secondary-btn:hover {
    background:white;
    color:#16395f;

}

.hero-features {

    display:flex;

    gap:25px;

    margin-top:40px;

}



.feature {

    color:#ffffff;

    font-size:14px;

    font-weight:500;

}



.feature span {

    color:#d13b35;

    font-weight:900;

    margin-right:6px;

}
.quote-btn {

    position:relative;
    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:#7d0501;

    padding:10px 22px;

    border-radius:25px;

    color:white !important;

    font-size:14px !important;

}


.quote-btn:hover {

    background:white;
    color:#7d0501 !important;
    transform:none;


}

/* ==========================
   ABOUT SECTION
========================== */


.about {

    padding:80px 8% 40px;
    background:#ffffff;

}


.about-container {

    max-width:1300px;

    margin:auto;

    padding:0 50px;

    display:flex;

    align-items:center;

    gap:70px;

}



/* Image */


.about-image {

    flex:1;

}


.about-image img {

    width:100%;

    height:450px;

    object-fit:cover;

    border-radius:20px;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.15);

}



/* Content */


.about-content {

    flex:1;

}



.section-tag {

    color:#A53632;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;

}



.about-content h2 {

    font-size:45px;

    line-height:1.2;

    color:#111;

    margin-bottom:25px;

}



.about-content h2 span {

    display:block;

    color:#0e376c;

}



.about-content p {

    color:#555;

    font-size:17px;

    line-height:1.8;

}



/* Features */


.about-features {

    margin-top:30px;

    display:flex;

    flex-direction:column;

    gap:15px;

}



.about-feature {

    font-size:16px;

    font-weight:600;

    color:#333;

}



.about-feature span {

    color:#A53632;

    margin-right:10px;

}



/* Button */


.about-btn {

    display:inline-block;

    margin-top:35px;

    background:#A53632;

    color:white;

    padding:14px 32px;

    border-radius:30px;

    text-decoration:none;

    font-weight:700;

    transition:0.3s;

}



.about-btn:hover {

    background:#7c1511;

}

/* =================================================
   GLOBAL SHIPPING NETWORK
   CLEAN WHITE SECTION + VIDEO BOX
   ================================================= */

.global-network {
    width: 100%;
    padding: 75px 0 110px !important;

    background: #F3F5F7 !important;

    overflow: hidden !important;
}

/* =================================================
   GLOBAL NETWORK
   ================================================= */

.global-network {
    width: 100%;
    padding: 75px 0 105px !important;
    background: #F1F4F7 !important;
    overflow: hidden;
}


/* Heading */

.network-heading {
    width: min(92%, 800px);
    margin: 0 auto 38px !important;
    text-align: center;
}

.network-heading .section-tag {
    margin-bottom: 12px;
}

.network-heading h2 {
    margin: 0 0 12px !important;

    font-size: clamp(38px, 4vw, 52px);
    line-height: 1.15;

    color: #111111;
}

.network-heading h2 span {
    display: block;
    color: #A53632;
}

.network-heading p {
    margin: 0 !important;

    color: #666666;

    font-size: 17px;
    line-height: 1.7;
}


/* =================================================
   MAP BOX
   ================================================= */

.map-wrapper {
    position: relative;

    width: min(90%, 1150px);
    aspect-ratio: 16 / 9;

    margin: 0 auto;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(15,45,99,.12);
    border-radius: 24px;

    box-shadow:
        0 22px 55px rgba(15,45,99,.10);

    isolation: isolate;

    line-height: 0;
}


/* Video */

.map-wrapper > .global-network-video {
    position: absolute;

    inset: 0;

    width: 100% !important;
    height: 100% !important;

    display: block;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: cover;

    border: 0 !important;
    outline: 0 !important;

    background: #ffffff;

    transform: none !important;
}


/* Remove browser inline media spacing */

.map-wrapper video {
    vertical-align: top;
}
.network-heading .section-tag {
    margin-bottom: 12px;
}

.network-heading h2 {
    margin: 0 0 12px !important;
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    color: #111111;
}

.network-heading h2 span {
    display: block;
    color: #A53632;
}

.network-heading p {
    margin: 0 !important;
    color: #666666;
    font-size: 17px;
    line-height: 1.7;
}

.map-wrapper::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    border: 1px solid rgba(255,255,255,0.35);

    border-radius: 22px;
}
/* =================================================
   INTERACTIVE SERVICES EXPERIENCE
================================================= */

.services {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.services-container {
    width: min(92%, 1320px);
    margin: 0 auto;
}


/* =================================================
   SERVICES — CENTERED HEADING
================================================= */

.services-heading {
    width: min(92%, 900px);
    max-width: 700px;
    margin: 0 auto 70px;
    text-align: center;
}

.services-heading .section-tag {
    margin-bottom: 13px;
    text-align: center;
}

.services-heading h2 {
    margin: 0 auto;
    font-size: clamp(23px, 4vw, 72px);
    line-height: 1.05;
    letter-spacing: -2px;
    color: #111111;
    font-weight: 700;
}

.services-heading h2 span {
    display: block;
    color: #0e376c;
}

.services-intro {
    max-width: 650px;
    margin: 25px auto 0;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}


/* =================================================
   MAIN INTERACTIVE AREA
================================================= */

.services-interactive {
    width: 100%;
    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    min-height: 620px;

    border-top: 1px solid #dfe3e8;
    border-bottom: 1px solid #dfe3e8;
}


/* =================================================
   FEATURE
================================================= */

.service-feature {
    position: relative;

    min-height: 620px;

    padding: 55px;

    overflow: hidden;

    background: #0e376c;

    color: white;

    display: flex;

    align-items: flex-end;
}


/* Large number */

.service-feature-number {
    position: absolute;

    top: 35px;
    right: 45px;

    font-family: 'Poppins', sans-serif;

    font-size: 120px;

    line-height: 1;

    font-weight: 800;

    color: rgba(255,255,255,0.08);

    pointer-events: none;
}


/* Content */

.service-feature-content {
    position: relative;

    z-index: 3;

    max-width: 440px;
}


.service-feature-content > span {
    color: #f6dc34;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}


.service-feature-content h3 {
    margin: 18px 0;

    color: white;

    font-size: clamp(44px, 5vw, 68px);

    line-height: .95;

    letter-spacing: -2px;
}


.service-feature-content h3 strong {
    display: block;

    color: #f6dc34;
}


.service-feature-content p {
    max-width: 400px;

    color: rgba(255,255,255,.75);

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 28px;
}


.service-feature-content a {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    color: white;

    font-weight: 700;

    text-decoration: none;
}


.service-feature-content a b {
    font-size: 22px;

    transition: .3s ease;
}


.service-feature-content a:hover b {
    transform: translate(5px,-5px);
}


/* =================================================
   FEATURE IMAGE
================================================= */

.service-feature-image {
    position: absolute;

    inset: 0;

    z-index: 1;

    opacity: .28;

    overflow: hidden;
}


.service-feature-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(14,55,108,.2),
            rgba(14,55,108,1)
        );
}


.service-feature-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        opacity .25s ease,
        transform 1s cubic-bezier(.2,.8,.2,1);
}


.service-feature:hover .service-feature-image img {
    transform: scale(1.05);
}


/* =================================================
   NAVIGATION
================================================= */

.service-navigation {
    display: flex;

    flex-direction: column;

    background: #ffffff;

    min-width: 0;
}


/* =================================================
   SERVICE ITEM
================================================= */

.service-item {
    position: relative;

    flex: 1;

    display: grid;

    grid-template-columns: 55px minmax(0, 1fr) auto 35px;

    align-items: center;

    gap: 20px;

    padding: 0 45px;

    border-bottom: 1px solid #e5e7eb;

    color: #111;

    overflow: hidden;

    text-decoration: none;

    transition:
        background .35s ease,
        padding .35s ease;
}


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


/* Red active indicator */

.service-item::before {
    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 5px;

    height: 100%;

    background: #A53632;

    transform: scaleY(0);

    transform-origin: bottom;

    transition: transform .35s ease;
}


/* Hover / Active */

.service-item:hover,
.service-item.active {
    background: #f7f9fc;

    padding-left: 55px;
}


.service-item:hover::before,
.service-item.active::before {
    transform: scaleY(1);
}


/* =================================================
   NUMBER
================================================= */

.service-number {
    font-family: 'Poppins', sans-serif;

    font-size: 14px;

    font-weight: 700;

    color: #A53632;
}


/* =================================================
   NAME
================================================= */

.service-name {
    font-family: 'Poppins', sans-serif;

    font-size: 20px;

    font-weight: 600;

    color: #0e376c;

    min-width: 0;
}


/* =================================================
   DESCRIPTION
================================================= */

.service-description {
    color: #888;

    font-size: 13px;

    white-space: nowrap;
}


/* =================================================
   ARROW
================================================= */

.service-arrow {
    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #dfe3e8;

    border-radius: 50%;

    color: #0e376c;

    transition:
        background .35s ease,
        border-color .35s ease,
        color .35s ease,
        transform .35s ease;
}


.service-item:hover .service-arrow {
    background: #A53632;

    border-color: #A53632;

    color: white;

    transform: translate(4px,-4px);
}


/* =================================================
   SERVICE IMAGE TRANSITION
================================================= */

.service-feature-image img {
    opacity: 1;

    transform: scale(1);

    transition:
        opacity .25s ease,
        transform 1s cubic-bezier(.2,.8,.2,1);
}


.service-feature-image img.changing {
    opacity: 0;

    transform: scale(1.04);
}


/* =================================================
   GLOBAL NETWORK VIDEO
================================================= */

.map-wrapper .global-network-video {
    position: absolute;

    inset: 0;

    width: 100% !important;

    height: 100% !important;

    object-fit: cover;

    display: block;

    margin: 0 !important;

    padding: 0 !important;

    border: none !important;

    outline: none !important;

    transform: none !important;
}
/* =========================================================
   INDUSTRIES — PREMIUM 3D FLIP CARD EXPERIENCE
   ========================================================= */

.industries {
    position: relative;
    padding: 120px 0 110px;
    background: #f5f6f7;
    overflow: hidden;
}


/* subtle background detail */

.industries::before {
    content: "";
    position: absolute;
    top: 0;
    right: -180px;
    width: 500px;
    height: 500px;

    background: radial-gradient(
        circle,
        rgba(165,54,50,0.08),
        transparent 68%
    );

    pointer-events: none;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.industries-container {
    width: min(92%, 1320px);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* =================================================
   INDUSTRIES — CENTERED HEADING
================================================= */

.industries-heading {
    width: min(92%, 850px);
    margin: 0 auto 60px;
    text-align: center;
}

.industries-heading .section-tag {
    text-align: center;
    margin-bottom: 18px;
}

.industries-heading h2 {
    margin: 0 auto;
    font-size: clamp(27px, 4vw, 68px);
    line-height: 1.05;
    letter-spacing: -2px;
    color: #111111;
    font-weight: 700;
}

.industries-heading h2 span {
    display: block;
    color: #A53632;
}

.industries-heading > p:last-child {
    max-width: 700px;
    margin: 25px auto 0;
    color: #666;
    font-size: 17px;
    line-height: 1.8;
}
/* =========================================================
   GRID
   ========================================================= */

.industries-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}


/* =========================================================
   CARD
   ========================================================= */

.industry-card {
    height: 430px;

    perspective: 1400px;

    cursor: pointer;
}


/* Inner rotating element */

.industry-card-inner {
    position: relative;

    width: 100%;
    height: 100%;

    transform-style: preserve-3d;

    transition:
        transform 0.75s cubic-bezier(.22,.61,.36,1);

    will-change: transform;
}


/* Desktop hover */

.industry-card:hover .industry-card-inner {
    transform: rotateY(180deg);
}


/* Keyboard accessibility */

.industry-card:focus-within .industry-card-inner {
    transform: rotateY(180deg);
}


/* =========================================================
   FRONT + BACK
   ========================================================= */

.industry-card-front,
.industry-card-back {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border-radius: 3px;

    overflow: hidden;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}


/* =========================================================
   FRONT
   ========================================================= */

.industry-card-front {
    background: #111;
}


/* image */

.industry-card-front img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transform: scale(1.01);

    transition:
        transform 0.8s cubic-bezier(.22,.61,.36,1);

    will-change: transform;
}


/* zoom image slightly */

.industry-card:hover .industry-card-front img {
    transform: scale(1.06);
}


/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.industry-card-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.05) 20%,
            rgba(0,0,0,0.18) 45%,
            rgba(0,0,0,0.88) 100%
        );

    z-index: 1;
}


/* =========================================================
   FRONT CONTENT
   ========================================================= */

.industry-card-content {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 28px;

    z-index: 3;

    display: flex;
    flex-direction: column;

    min-height: 150px;

    justify-content: space-between;
}


/* number */

.industry-card-content .industry-number {
    position: absolute;

    top: -270px;
    left: 0;

    font-family: 'Poppins', sans-serif;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #ffffff;
}


/* small label */

.industry-card-content p {
    margin: 0 0 9px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    color: rgba(255,255,255,.75);
}


/* title */

.industry-card-content h3 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(26px, 2.4vw, 35px);

    line-height: 1.05;

    letter-spacing: -1px;
}

.industry-card-content h3 span {
    display: block;

    color: #f6dc34;
}


/* arrow */

.industry-flip-icon {
    position: absolute;

    right: 0;
    bottom: 2px;

    width: 43px;
    height: 43px;

    border: 1px solid rgba(255,255,255,.5);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 20px;

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease;
}

.industry-card:hover .industry-flip-icon {
    transform: translate(4px,-4px);

    background: #A53632;

    border-color: #A53632;
}


/* =========================================================
   BACK
   ========================================================= */

.industry-card-back {
    transform: rotateY(180deg);

    background:
        linear-gradient(
            145deg,
            #161616 0%,
            #202020 55%,
            #A53632 180%
        );

    color: #ffffff;

    padding: 38px;

    display: flex;
    flex-direction: column;

    justify-content: flex-end;

    border: 1px solid rgba(255,255,255,.08);
}


/* decorative line */

.industry-card-back::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #A53632;
}


/* giant number */

.industry-card-back > .industry-number {
    position: absolute;

    top: 25px;
    right: 28px;

    font-family: 'Poppins', sans-serif;

    font-size: 100px;

    line-height: 1;

    font-weight: 800;

    color: rgba(255,255,255,.055);

    pointer-events: none;
}


/* back label */

.industry-back-label {
    margin: 0 0 14px;

    color: #f6dc34;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* back title */

.industry-card-back h3 {
    margin: 0 0 17px;

    max-width: 400px;

    font-size: 31px;

    line-height: 1.08;

    letter-spacing: -1px;

    color: #ffffff;
}

.industry-card-back h3 span {
    display: block;

    color: #f6dc34;
}


/* description */

.industry-card-back > p:not(.industry-back-label) {
    margin: 0 0 25px;

    max-width: 430px;

    color: rgba(255,255,255,.72);

    font-size: 14px;

    line-height: 1.7;
}


/* CTA */

.industry-card-back a {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    width: fit-content;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition: gap .3s ease;
}

.industry-card-back a b {
    font-size: 19px;

    transition: transform .3s ease;
}

.industry-card-back a:hover {
    gap: 16px;
}

.industry-card-back a:hover b {
    transform: translate(4px,-4px);
}


/* =========================================================
   BOTTOM STATEMENT
   ========================================================= */

.industries-bottom {
    margin-top: 55px;

    padding-top: 25px;

    border-top: 1px solid #d9dde1;

    display: grid;

    grid-template-columns:
        1fr 2fr auto;

    align-items: center;

    gap: 30px;
}


.industries-bottom > span {
    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #A53632;
}


.industries-bottom p {
    margin: 0;

    color: #555;

    font-size: 15px;
}


.industries-bottom a {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #111;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;
}

.industries-bottom a b {
    color: #A53632;

    font-size: 19px;

    transition: transform .3s ease;
}

.industries-bottom a:hover b {
    transform: translate(4px,-4px);
}


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

@media (max-width: 1100px) {

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

    .industry-card {
        height: 410px;
    }

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

    .industries-bottom a {
        justify-self: end;
    }

}


@media (max-width: 700px) {

    .industries {
        padding: 85px 0;
    }

    .industries-heading {
        margin-bottom: 45px;
    }

    .industries-heading h2 {
        letter-spacing: -1.5px;
    }

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

        gap: 18px;
    }

    .industry-card {
        height: 390px;
    }

    .industry-card-back {
        padding: 30px;
    }

    .industry-card-back h3 {
        font-size: 28px;
    }

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

        gap: 15px;

        margin-top: 40px;
    }

    .industries-bottom a {
        justify-self: start;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .industry-card-inner,
    .industry-card-front img,
    .industry-flip-icon,
    .industry-card-back a,
    .industry-card-back a b {
        transition: none !important;
    }

}

/* =================================================
   WHY RUDRA — PREMIUM CAPABILITIES SECTION
   ================================================= */

.why-rudra {
    position: relative;
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}


/* =================================================
   CONTAINER
   ================================================= */

.why-rudra-container {
    width: min(92%, 1320px);
    margin: 0 auto;
}


/* =================================================
   HEADING
   ================================================= */

.why-rudra-heading {
    width: min(100%, 850px);
    margin: 0 auto 70px;
    text-align: center;
}

.why-rudra-heading .section-tag {
    margin-bottom: 18px;
    text-align: center;
}

.why-rudra-heading h2 {
    margin: 0;
    font-size: clamp(27px, 4vw, 68px);
    line-height: 1.05;
    letter-spacing: -2px;
    font-weight: 700;
    color: #111111;
}

.why-rudra-heading h2 span {
    display: block;
    color: #A53632;
}

.why-rudra-heading > p:last-child {
    max-width: 700px;
    margin: 25px auto 0;
    color: #666666;
    font-size: 17px;
    line-height: 1.8;
}


/* =================================================
   LIST
   ================================================= */

.why-rudra-list {
    width: 100%;
    border-top: 1px solid #dfe3e8;
}


/* =================================================
   ITEM
   ================================================= */

.why-rudra-item {
    position: relative;

    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) 55px;

    align-items: center;

    min-height: 155px;

    padding: 28px 30px;

    border-bottom: 1px solid #dfe3e8;

    background: #ffffff;

    overflow: hidden;

    transition:
        background .4s ease,
        padding .4s ease;
}


/* Red accent */

.why-rudra-item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 4px;
    height: 100%;

    background: #A53632;

    transform: scaleY(0);
    transform-origin: bottom;

    transition: transform .4s ease;
}


/* Hover */

.why-rudra-item:hover {
    background: #f8f9fa;
    padding-left: 42px;
}

.why-rudra-item:hover::before {
    transform: scaleY(1);
}


/* =================================================
   NUMBER
   ================================================= */

.why-rudra-number {
    font-family: 'Poppins', sans-serif;

    font-size: 15px;
    font-weight: 700;

    color: #A53632;

    letter-spacing: 1px;

    transition: transform .4s ease;
}

.why-rudra-item:hover .why-rudra-number {
    transform: translateX(4px);
}


/* =================================================
   CONTENT
   ================================================= */

.why-rudra-content {
    max-width: 760px;
}

.why-rudra-content h3 {
    margin: 0 0 10px;

    color: #0e376c;

    font-family: 'Poppins', sans-serif;

    font-size: clamp(22px, 2.2vw, 30px);

    font-weight: 600;

    line-height: 1.2;
}

.why-rudra-content p {
    margin: 0;

    max-width: 680px;

    color: #777777;

    font-size: 15px;

    line-height: 1.7;
}


/* =================================================
   ARROW
   ================================================= */

.why-rudra-arrow {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #dfe3e8;

    border-radius: 50%;

    color: #0e376c;

    font-size: 18px;

    transition:
        background .35s ease,
        border-color .35s ease,
        color .35s ease,
        transform .35s ease;
}

.why-rudra-item:hover .why-rudra-arrow {
    background: #A53632;

    border-color: #A53632;

    color: #ffffff;

    transform: translate(4px, -4px);
}


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

@media (max-width: 900px) {

    .why-rudra {
        padding: 90px 0;
    }

    .why-rudra-heading {
        margin-bottom: 50px;
    }

    .why-rudra-item {
        grid-template-columns: 65px minmax(0, 1fr) 45px;

        min-height: 140px;

        padding: 25px 20px;
    }

    .why-rudra-item:hover {
        padding-left: 28px;
    }

}


@media (max-width: 600px) {

    .why-rudra {
        padding: 75px 0;
    }

    .why-rudra-heading {
        width: 100%;
        margin-bottom: 40px;
    }

    .why-rudra-heading h2 {
        letter-spacing: -1.5px;
    }

    .why-rudra-heading > p:last-child {
        font-size: 15px;
    }

    .why-rudra-item {
        grid-template-columns: 45px minmax(0, 1fr) 40px;

        gap: 12px;

        min-height: 145px;

        padding: 22px 15px;
    }

    .why-rudra-item:hover {
        padding-left: 20px;
    }

    .why-rudra-number {
        font-size: 13px;
    }

    .why-rudra-content h3 {
        font-size: 20px;
    }

    .why-rudra-content p {
        font-size: 14px;
    }

    .why-rudra-arrow {
        width: 36px;
        height: 36px;

        font-size: 16px;
    }

}

/* =================================================
   CONTACT SECTION
   ================================================= */

.contact-section {
    position: relative;
    padding: 120px 0;
    background: #111111;
    color: #ffffff;
    overflow: hidden;
}


/* Subtle background detail */

.contact-section::before {
    content: "";
    position: absolute;

    width: 600px;
    height: 600px;

    right: -250px;
    top: -250px;

    background: radial-gradient(
        circle,
        rgba(165, 54, 50, 0.20),
        transparent 68%
    );

    pointer-events: none;
}


/* Container */

.contact-container {
    width: min(92%, 1320px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;

    gap: 90px;

    position: relative;
    z-index: 2;
}


/* =================================================
   LEFT CONTENT
   ================================================= */

.contact-content {
    max-width: 720px;
}


.contact-content .section-tag {
    color: #d13b35;
    margin-bottom: 20px;
}


.contact-content h2 {
    margin: 0;

    font-size: clamp(46px, 6vw, 78px);

    line-height: 0.98;
    color: #ffffff;;
    letter-spacing: -3px;

    font-weight: 700;
}


.contact-content h2 span {
    display: block;
    color: #d13b35;
}


.contact-intro {
    max-width: 620px;

    margin: 30px 0 45px;

    color: rgba(255,255,255,0.68);

    font-size: 17px;

    line-height: 1.8;
}


/* =================================================
   CONTACT DETAILS
   ================================================= */

.contact-details {
    display: flex;
    flex-direction: column;

    gap: 22px;
}


.contact-detail {
    display: flex;
    align-items: center;

    gap: 18px;

    width: fit-content;

    color: #ffffff;

    text-decoration: none;

    transition: transform .3s ease;
}


.contact-detail:hover {
    transform: translateX(6px);
}


.contact-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.16);

    color: #d13b35;

    font-size: 19px;
}


.contact-detail small {
    display: block;

    margin-bottom: 4px;

    color: rgba(255,255,255,0.42);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


.contact-detail strong {
    font-size: 15px;

    font-weight: 500;

    color: #ffffff;
}


/* =================================================
   SOCIAL LINKS
   ================================================= */

.contact-socials {
    margin-top: 55px;
}


.contact-socials > span {
    display: block;

    margin-bottom: 16px;

    color: rgba(255,255,255,0.4);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


.social-links {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}


.social-links a {
    padding: 10px 18px;

    border: 1px solid rgba(255,255,255,0.14);

    color: rgba(255,255,255,0.75);

    font-size: 13px;

    text-decoration: none;

    transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease;
}


.social-links a:hover {
    background: #A53632;

    border-color: #A53632;

    color: #ffffff;
}


/* =================================================
   RIGHT PANEL
   ================================================= */

.contact-panel {
    align-self: center;

    min-height: 460px;

    padding: 48px;

    background: #A53632;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    position: relative;

    overflow: hidden;
}


/* Large decorative circle */

.contact-panel::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -100px;
    bottom: -100px;

    border: 1px solid rgba(255,255,255,0.18);

    border-radius: 50%;
}


.contact-panel::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -50px;
    bottom: -50px;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 50%;
}


/* Panel top */

.contact-panel-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    position: relative;
    z-index: 2;
}


.contact-panel-top > span {
    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


.contact-panel-arrow {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.35);

    font-size: 20px;
}


/* Panel heading */

.contact-panel h3 {
    position: relative;
    z-index: 2;
    color: #ffffff;
    margin: 70px 0 20px;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1;

    letter-spacing: -2px;
}


.contact-panel h3 strong {
    display: block;

    color: #f6dc34;
}


/* Panel paragraph */

.contact-panel p {
    position: relative;
    z-index: 2;

    max-width: 390px;

    color: rgba(255,255,255,0.78);

    font-size: 15px;

    line-height: 1.7;
}


/* Quote button */

.contact-quote-btn {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 35px;

    padding: 17px 20px;

    background: #ffffff;

    color: #111111;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition:
        transform .3s ease,
        background .3s ease;
}


.contact-quote-btn span {
    font-size: 22px;

    transition: transform .3s ease;
}


.contact-quote-btn:hover {
    transform: translateY(-4px);
}


.contact-quote-btn:hover span {
    transform: translateX(5px);
}


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

@media (max-width: 900px) {

    .contact-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .contact-panel {
        min-height: 400px;
    }

}


@media (max-width: 600px) {

    .contact-section {
        padding: 80px 0;
    }

    .contact-content h2 {
        letter-spacing: -2px;
    }

    .contact-panel {
        padding: 32px;

        min-height: 400px;
    }

    .contact-panel h3 {
        margin-top: 55px;
    }

    .contact-detail strong {
        font-size: 14px;
    }

}

/* =================================================
   GET A QUOTE
   ================================================= */

.quote-section {
    padding: 120px 0;
    background: #f5f6f7;
    position: relative;
    overflow: hidden;
}


.quote-container {
    width: min(92%, 1320px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 90px;

    align-items: start;
}


/* =================================================
   LEFT INTRO
   ================================================= */

.quote-intro {
    padding-top: 20px;
}


.quote-intro .section-tag {
    color: #A53632;
    margin-bottom: 20px;
}


.quote-intro h2 {
    margin: 0;

    font-size: clamp(48px, 6vw, 78px);

    line-height: 0.98;

    letter-spacing: -3px;

    color: #111111;
}


.quote-intro h2 span {
    display: block;
    color: #A53632;
}


.quote-intro > p:not(.section-tag) {
    max-width: 520px;

    margin: 30px 0 50px;

    color: #666666;

    font-size: 17px;

    line-height: 1.8;
}


/* =================================================
   QUOTE POINTS
   ================================================= */

.quote-points {
    display: flex;
    flex-direction: column;

    gap: 28px;
}


.quote-point {
    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 18px;

    align-items: start;
}


.quote-point > span {
    font-size: 13px;

    font-weight: 700;

    color: #A53632;

    padding-top: 3px;
}


.quote-point strong {
    display: block;

    color: #111111;

    font-size: 16px;

    margin-bottom: 5px;
}


.quote-point p {
    margin: 0;

    color: #777777;

    font-size: 13px;

    line-height: 1.6;
}


/* =================================================
   FORM WRAPPER
   ================================================= */

.quote-form-wrapper {
    background: #ffffff;

    border: 1px solid #e1e4e8;

    box-shadow:
        0 25px 70px rgba(0,0,0,0.08);
}


.quote-form {
    padding: 48px;
}


/* =================================================
   FORM HEADING
   ================================================= */

.quote-form-heading {
    padding-bottom: 28px;

    margin-bottom: 30px;

    border-bottom: 1px solid #e5e7eb;
}


.quote-form-heading span {
    display: block;

    margin-bottom: 10px;

    color: #A53632;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


.quote-form-heading h3 {
    margin: 0;

    color: #111111;

    font-size: 32px;

    letter-spacing: -1px;
}


/* =================================================
   FORM ROW
   ================================================= */

.quote-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


/* =================================================
   FORM FIELD
   ================================================= */

.quote-field {
    margin-bottom: 22px;
}


.quote-field label {
    display: block;

    margin-bottom: 8px;

    color: #333333;

    font-size: 12px;

    font-weight: 600;
}


.quote-field input,
.quote-field select,
.quote-field textarea {

    width: 100%;

    box-sizing: border-box;

    padding: 14px 15px;

    border: 1px solid #dfe3e8;

    border-radius: 0;

    outline: none;

    background: #ffffff;

    color: #111111;

    font-family: inherit;

    font-size: 14px;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}


.quote-field input,
.quote-field select {
    height: 50px;
}


.quote-field textarea {
    min-height: 125px;

    resize: vertical;
}


.quote-field input::placeholder,
.quote-field textarea::placeholder {
    color: #a1a5aa;
}


.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {

    border-color: #A53632;

    box-shadow:
        0 0 0 3px rgba(165,54,50,0.08);
}


/* =================================================
   SUBMIT BUTTON
   ================================================= */

.quote-submit {

    width: 100%;

    min-height: 56px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 20px;

    border: none;

    background: #A53632;

    color: #ffffff;

    cursor: pointer;

    font-family: inherit;

    font-size: 14px;

    font-weight: 700;

    transition:
        background .3s ease,
        transform .3s ease;
}


.quote-submit strong {
    font-size: 22px;

    font-weight: 400;

    transition: transform .3s ease;
}


.quote-submit:hover {
    background: #7c1511;

    transform: translateY(-2px);
}


.quote-submit:hover strong {
    transform: translateX(6px);
}


/* =================================================
   NOTE
   ================================================= */

.quote-note {
    margin: 15px 0 0;

    color: #999999;

    font-size: 11px;

    line-height: 1.5;

    text-align: center;
}


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

@media (max-width: 1000px) {

    .quote-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .quote-intro {
        max-width: 750px;
    }

}


@media (max-width: 650px) {

    .quote-section {
        padding: 80px 0;
    }

    .quote-form {
        padding: 30px 22px;
    }

    .quote-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .quote-intro h2 {
        letter-spacing: -2px;
    }

}

/* =========================================================
   RUDRA SHIPPING & LOGISTICS — PREMIUM FOOTER
   ========================================================= */

.site-footer {
    position: relative;
    background: rgb(208, 208, 208) ;
    color: #0b1f3a;
}


/* =========================================================
   MAIN FOOTER
   ========================================================= */

.footer-main {
    padding: 80px 0 65px;
}

.footer-container {
    width: min(92%, 1320px);
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.5fr
        0.8fr
        1fr
        1.25fr;

    gap: 70px;

    align-items: start;
}


/* =========================================================
   BRAND
   ========================================================= */

.footer-brand {
    max-width: 340px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;

    text-decoration: none;
}

.footer-logo img {
    display: block;

    width: 210px;
    height: auto;

    object-fit: contain;
}


.footer-description {
    margin: 25px 0 28px;

    max-width: 320px;

    color: #000000;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   WHATSAPP BUTTON
   ========================================================= */

.footer-whatsapp {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 19px;

    border: 1px solid #0b1f3a;

    border-radius: 50px;

    color: #0b1f3a;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.footer-whatsapp:hover {
    background: #A53632;
    color: #ffffff;
    border-color: #A53632;

    transform: translateY(-2px);
}


.whatsapp-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 27px;
    height: 27px;

    border-radius: 50%;

    background: #A53632;

    font-size: 14px;

    transition: background 0.3s ease;
}

.footer-whatsapp:hover .whatsapp-icon {
    background: #ffffff;

    color: #A53632;
}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.footer-column h3 {
    position: relative;

    margin: 5px 0 25px;

    color: #000000;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 0.3px;
}

.footer-column h3::after {
    content: "";

    display: block;

    width: 30px;
    height: 2px;

    margin-top: 10px;

    background: #A53632;
}


.footer-column ul {
    list-style: none;

    margin: 0;
    padding: 0;
}

.footer-column li {
    margin-bottom: 13px;
}


.footer-column li a {
    color: #0b1f3a;

    font-size: 14px;
    font-weight: 500;
    text-decoration: none;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.footer-column li a:hover {
    color: #000307;

    padding-left: 5px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 18px;
}


.contact-icon {
    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background:#0b1f3a;

    color: #fbfafa;

    font-size: 14px;
}


.footer-contact-item p {
    margin: 0;

    color: #0b1f3a;

    font-size: 14px;

    line-height: 1.7;
}


.footer-contact-item a {
    padding-top: 5px;

    color: #0b1f3a;

    font-size: 14px;

    text-decoration: none;

    transition: color 0.25s ease;
}

.footer-contact-item a:hover {
    color: #000307;
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    border-top: 1px solid #0b1f3a;

    padding: 22px 0;
}


.footer-bottom-container {
    width: min(92%, 1320px);

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 30px;
}


.footer-bottom p {
    margin: 0;

    color: #0b1f3a;

    font-size: 12px;
}


/* =========================================================
   SOCIAL MEDIA
   ========================================================= */

.footer-social {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;
}


.footer-social a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border: 1px solid #0b1f3a;

    border-radius: 50%;

    color: #0b1f3a;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.footer-social a:hover {
    background: #0b1f3a;

    border-color: #0b1f3a;

    color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================================
   BACK TO TOP
   ========================================================= */

.back-to-top {
    justify-self: end;

    color: #0b1f3a;

    font-size: 12px;

    text-decoration: none;

    transition: color 0.25s ease;
}


.back-to-top:hover {
    color: #0b1f3a;
}


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

@media (max-width: 1050px) {

    .footer-container {
        grid-template-columns:
            1.2fr
            1fr
            1fr;

        gap: 45px;
    }

    .footer-brand {
        grid-column: span 3;
        max-width: 500px;
    }

}


@media (max-width: 700px) {

    .footer-main {
        padding: 65px 0 45px;
    }

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

        gap: 40px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom-container {
        grid-template-columns: 1fr;

        text-align: center;

        gap: 18px;
    }

    .footer-social {
        order: 2;
    }

    .back-to-top {
        order: 3;

        justify-self: center;
    }

}


@media (max-width: 480px) {

    .footer-logo img {
        width: 185px;
    }

    .footer-description {
        font-size: 14px;
    }

}
/* =========================================================
   INDUSTRY QUOTE LINKS — CLICK FIX
   ========================================================= */

.industry-card-back {
    position: absolute;
    z-index: 5;
    pointer-events: auto;
}

.industry-card-back a.industry-quote-link {
    position: relative;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    pointer-events: auto;
    text-decoration: none;
}

.industry-card-back a.industry-quote-link b {
    pointer-events: none;
}