/*=========================================================
  WORD OF AD - GLOBAL DESIGN SYSTEM
  Premium Business Growth Company
  style.css (Part 1)
=========================================================*/

/*==============================
Google Fonts
==============================*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@500;600;700;800&display=swap');

/*==============================
CSS Variables
==============================*/
:root {

    /* Colors */
    --primary: #094C80;
    --secondary: #B87333;
    --white: #ffffff;
    --light: #f8f9fb;
    --grey: #6B7280;
    --dark: #2d416e;
    --border: #E5E7EB;

    /* Typography */
    --heading: 'Playfair Display', serif;
    --body: 'Inter', sans-serif;

    /* Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 18px;

    /* Shadow */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, .05);
    --shadow: 0 10px 30px rgba(0, 0, 0, .08);
    --shadow-lg: 0 25px 50px rgba(0, 0, 0, .12);

    /* Transition */
    --transition: .35s ease;

    /* Width */
    --container: 1280px;

}

/*==============================
Reset
==============================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: var(--body);
    color: var(--dark);
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;

}

img {

    width: 100%;
    display: block;

}

a {

    text-decoration: none;
    color: inherit;
    transition: var(--transition);

}

ul {

    list-style: none;

}

button {

    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;

}

input,
textarea,
select {

    font-family: inherit;
    outline: none;

}

/*==============================
Container
==============================*/

.container {

    width: min(92%, var(--container));
    margin: auto;

}

/*==============================
Typography
==============================*/

h1,
h2,
h3,
h4 {

    font-family: var(--heading);
    color: var(--primary);
    line-height: 1.2;

}

h1 {

    font-size: clamp(2.8rem, 5vw, 4.8rem);
    margin-bottom: 25px;

}

h2 {

    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 20px;

}

h3 {

    font-size: 1.5rem;

}

p {

    color: var(--grey);
    font-size: 1.05rem;

}

.section-heading {

    max-width: 760px;
    margin: 0 auto 70px;

}

.section-heading.center {

    text-align: center;

}

.section-heading span,
.section-tag,
.hero-label {

    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(184, 115, 51, .12);
    color: var(--secondary);
    font-size: .82rem;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;

}

/*==============================
Spacing
==============================*/

section {

    padding: 110px 0;

}

/*==============================
Buttons
==============================*/

.btn-primary {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 10px 34px;

    background: var(--primary);
    color: #fff;

    border-radius: 60px;

    font-weight: 600;

    transition: var(--transition);

    box-shadow: var(--shadow);

}

.btn-primary:hover {

    background: var(--secondary);
    transform: translateY(-3px);

}

.btn-outline {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 34px;

    border: 2px solid var(--primary);

    color: var(--primary);

    border-radius: 60px;

    font-weight: 600;

    transition: var(--transition);

}

.btn-outline:hover {

    background: var(--primary);
    color: #fff;

}

/*==============================
Header
==============================*/

.top-header {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 999;

    background: rgba(255, 255, 255, .95);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(0, 0, 0, .05);

}


.header-wrapper {

    display: flex;
    justify-content: space-between;
    align-items: center;

    min-height: 90px;

}

.logo img {

    width: 100px;
    height: 60px;


}

/*==============================
Navigation
==============================*/


.navbar ul {

    display: flex;
    align-items: center;
    gap: 34px;

}

.navbar a {

    display: inline-block;
    font-size: .96rem;
    font-weight: 600;
    color: var(--dark);
    position: relative;
    transition: var(--transition);

}

.navbar a::after {

    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);

}

.navbar a:hover::after,
.navbar a.active::after {

    width: 100%;

}

.navbar a:hover {

    color: var(--secondary);

}

.menu-toggle {

    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 2rem;
    color: var(--primary);
    cursor: pointer;

}

/*=========================================
        HERO SECTION
=========================================*/

.hero {

    position: relative;

    width: 100%;

    height: 780PX;

    overflow: hidden;

    display: flex;

    align-items: center;

}

/*==============================
VIDEO
==============================*/

.hero-video {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;

}

/*==============================
OVERLAY
==============================*/

.hero-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(90deg,
            rgba(7, 20, 38, .85) 0%,
            rgba(7, 20, 38, .65) 45%,
            rgba(7, 20, 38, .35) 100%);

    z-index: 1;

}

/*==============================
CONTENT
==============================*/

.hero .container {

    position: relative;

    z-index: 2;

}

.hero-content {

    max-width: 720px;

}

.hero-badge {

    display: inline-block;

    padding: 12px 24px;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255, 255, 255, .15);

    border-radius: 50px;

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 30px;

}

.hero-content h1 {

    color: #fff;

    font-size: clamp(3rem, 3vw, 5rem);

    line-height: 1.1;

    margin-bottom: 25px;

}

.hero-content h1 span {

    color: #B87333;

}

.hero-content p {

    color: rgba(255, 255, 255, .85);

    font-size: 20px;

    line-height: 1.8;

    max-width: 620px;

    margin-bottom: 40px;

}

.hero-buttons {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}

.btn {

    padding: 16px 30px;

    border-radius: 50px;

    font-weight: 600;

    transition: .35s;

    text-decoration: none;

}

.btn-primary {

    background: #B87333;

    color: #fff;

}

.btn-primary:hover {

    background: #fff;

    color: #0B1E3C;

}

.btn-outline {

    border: 2px solid #fff;

    color: #fff;

}

.btn-outline:hover {

    background: #fff;

    color: #0B1E3C;

}



/*==============================
Utility Classes
==============================*/

.text-center {

    text-align: center;

}

.mt-30 {

    margin-top: 30px;

}

.mt-50 {

    margin-top: 50px;

}

.mb-30 {

    margin-bottom: 30px;

}

.mb-60 {

    margin-bottom: 60px;

}

.bg-light {

    background: var(--light);

}

.shadow {

    box-shadow: var(--shadow);

}

.rounded {

    border-radius: var(--radius-lg);

}

/*==============================
Scrollbar
==============================*/

::-webkit-scrollbar {

    width: 8px;

}

::-webkit-scrollbar-thumb {

    background: var(--secondary);
    border-radius: 50px;

}

::-webkit-scrollbar-track {

    background: #f1f1f1;

}

/*==============================
  TRUST BAR
==============================*/

.trust-bar {

    background: #ffffff;

    padding: 80px 0;

    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;

}

.trust-wrapper {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

    text-align: center;

}

.trust-wrapper div {

    padding: 20px 30px;

    border-right: 1px solid #E5E7EB;

}

.trust-wrapper div:last-child {

    border-right: none;

}

.trust-wrapper h3 {

    font-size: 3.2rem;

    color: var(--secondary);

    font-family: var(--heading);

    font-weight: 700;

    margin-bottom: 12px;

}

.trust-wrapper p {

    color: #6B7280;

    font-size: 1rem;

    font-weight: 600;

    margin: 0;

}

.trust-wrapper div:hover {

    transform: translateY(-8px);

    transition: .35s ease;

}

.trust-wrapper div:hover h3 {

    color: var(--primary);

}

/*==============================
        Responsive
==============================*/

@media(max-width:992px) {

    .trust-wrapper {

        grid-template-columns: repeat(2, 1fr);

    }

    .trust-wrapper div:nth-child(2) {

        border-right: none;

    }

}

@media(max-width:768px) {

    .trust-wrapper {

        grid-template-columns: 1fr;

        gap: 25px;

    }

    .trust-wrapper div {

        border-right: none;

        border-bottom: 1px solid #E5E7EB;

    }

    .trust-wrapper div:last-child {

        border-bottom: none;

    }

}

/*==============================
  TRUST SECTION
==============================*/

.trust-section {
    background: #fff;
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: flex-start;
}

.trust-content .left,
.trust-content .right {
    position: relative;
}

.trust-content .left::before {
    content: "";
    position: absolute;
    left: -25px;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary);
    border-radius: 10px;
}

.trust-content p {
    font-size: 1.15rem;
    color: var(--grey);
    line-height: 2;
}

.trust-content .left p {
    color: var(--primary);
    font-weight: 600;
}

/*==============================
  SERVICES SECTION
==============================*/

.services {
    background: var(--light);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.service-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: 18px;
    transition: all .35s ease;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 4px;
    background: var(--secondary);
    transition: .4s;
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.service-card .icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(184, 115, 51, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.service-card .icon i {
    font-size: 2rem;
    color: var(--secondary);
}

.service-card h3 {
    margin-bottom: 18px;
    color: var(--primary);
}

.service-card p {
    margin-bottom: 28px;
    color: var(--grey);
    line-height: 1.9;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-weight: 700;
    transition: .3s;
}

.service-card a i {
    transition: .3s;
}

.service-card:hover a i {
    transform: translateX(6px);
}

/*==============================
  SECTION BUTTON
==============================*/

.section-button {
    text-align: center;
    margin-top: 60px;
}

/*==============================
  HOVER EFFECTS
==============================*/

.service-card:hover h3 {
    color: var(--secondary);
}

.service-card:hover .icon {
    background: var(--secondary);
}

.service-card:hover .icon i {
    color: #fff;
}

/*==============================
  RESPONSIVE
==============================*/

@media(max-width:992px) {

    .trust-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .trust-wrapper {
        grid-template-columns: 1fr;
    }

    .trust-wrapper div {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .trust-wrapper div:last-child {
        border-bottom: none;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .trust-content .left::before {
        display: none;
    }

    .service-card {
        padding: 35px 25px;
    }

    .trust-wrapper h3 {
        font-size: 2.4rem;
    }

}

@media(max-width:576px) {

    .trust-bar {
        padding: 50px 0;
    }

    .trust-wrapper h3 {
        font-size: 2rem;
    }

    .trust-content p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .service-card .icon {
        width: 60px;
        height: 60px;
    }

    .service-card .icon i {
        font-size: 1.6rem;
    }

}

/*=========================================================
  STYLE.CSS - PART 2B-1
  Industries Section + Process Section
=========================================================*/

/*==============================
      INDUSTRIES SECTION
==============================*/

.industries {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.industries::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 350px;
    height: 350px;
    background: rgba(184, 115, 51, .05);
    border-radius: 50%;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.industry-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all .35s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s;
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.industry-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 115, 51, .10);
    transition: .35s;
}

.industry-icon i {
    font-size: 2.2rem;
    color: var(--secondary);
    transition: .35s;
}

.industry-card:hover .industry-icon {
    background: var(--secondary);
}

.industry-card:hover .industry-icon i {
    color: #fff;
}

.industry-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 1.5rem;
}

.industry-card p {
    color: var(--grey);
    line-height: 1.8;
    font-size: .98rem;
}

.industry-card:hover h3 {
    color: var(--secondary);
}

/*==============================
      PROCESS SECTION
==============================*/

.process-section {
    background: var(--light);
    position: relative;
}

.process-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 70px;
}

.process-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: .35s;
    position: relative;
    overflow: hidden;
}

.process-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: .4s;
}

.process-card:hover::after {
    transform: scaleX(1);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.number {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--heading);
    transition: .35s;
}

.process-card:hover .number {
    background: var(--secondary);
    transform: rotate(360deg);
}

.process-card h3 {
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 1.45rem;
}

.process-card p {
    color: var(--grey);
    line-height: 1.9;
    font-size: .96rem;
}

/*==============================
     CONNECTOR LINE
==============================*/

@media(min-width:1200px) {

    .process-wrapper {
        position: relative;
    }

    .process-wrapper::before {
        content: "";
        position: absolute;
        top: 35px;
        left: 10%;
        width: 80%;
        height: 2px;
        background: rgba(184, 115, 51, .25);
        z-index: 0;
    }

    .process-card {
        z-index: 2;
    }

}

/*==============================
     RESPONSIVE
==============================*/

@media(max-width:1200px) {

    .process-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:992px) {

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .process-wrapper {
        grid-template-columns: 1fr;
    }

    .industry-card {
        padding: 35px 25px;
    }

    .process-card {
        padding: 35px 25px;
    }

    .process-wrapper::before {
        display: none;
    }

}

@media(max-width:576px) {

    .industry-icon {
        width: 70px;
        height: 70px;
    }

    .industry-icon i {
        font-size: 2rem;
    }

    .number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .industry-card h3,
    .process-card h3 {
        font-size: 1.3rem;
    }

}


/*==============================
      WHY WORD OF AD
==============================*/

.why-wordofad {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.why-wordofad::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(11, 30, 60, .04);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

.why-content h2 {
    margin: 20px 0 25px;
    max-width: 650px;
}

.why-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 35px;
    max-width: 620px;
}

.why-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 30px;
    margin-bottom: 40px;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.7;
}

.why-list li i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.why-image {
    position: relative;
}

.why-image img {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    transition: all .4s ease;
}

.why-image:hover img {
    transform: scale(1.03);
}

/*==============================
      CLIENT LOGOS
==============================*/

.client-logos {
    background: var(--light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.logo-slider {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 35px;
    align-items: center;
    margin-top: 55px;
}

.logo-slider img {
    max-width: 160px;
    margin: auto;
    opacity: .55;
    filter: grayscale(100%);
    transition: all .35s ease;
}

.logo-slider img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.08);
}

/*==============================
      PREMIUM EFFECTS
==============================*/

.industry-card,
.process-card,
.service-card,
.case-card,
.blog-card {
    transition: all .35s ease;
}

.industry-card:hover,
.process-card:hover,
.service-card:hover,
.case-card:hover,
.blog-card:hover {
    transform: translateY(-10px);
}

/* Smooth Image Animation */

.hero-image img,
.why-image img {
    animation: floatImage 5s ease-in-out infinite;
}

@keyframes floatImage {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }

}

/* Fade Animation */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/*==============================
      RESPONSIVE
==============================*/

@media(max-width:1200px) {

    .why-grid {
        gap: 50px;
    }

    .logo-slider {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:992px) {

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-image {
        order: -1;
    }

    .why-list {
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px) {

    .logo-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .logo-slider img {
        max-width: 130px;
    }

    .why-content {
        text-align: center;
    }

    .why-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .why-list {
        text-align: left;
    }

    .why-content .btn-primary {
        display: inline-flex;
    }

}

@media(max-width:576px) {

    .logo-slider {
        grid-template-columns: 1fr;
    }

    .logo-slider img {
        max-width: 150px;
    }

    .why-content h2 {
        font-size: 2rem;
    }

    .why-content p {
        font-size: 1rem;
    }

    .why-list li {
        font-size: .95rem;
    }

}


/*==============================
        CASE STUDIES
==============================*/

.case-studies {
    background: #fff;
    position: relative;
    padding: 110px 0;
}

.case-studies::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(11, 30, 60, .04);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.case-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: .35s;
    border: 1px solid var(--border);
}

.case-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.case-image {
    overflow: hidden;
}

.case-image img {
    height: 260px;
    object-fit: cover;
    transition: .5s;
}

.case-card:hover .case-image img {
    transform: scale(1.08);
}

.case-content {
    padding: 30px;
}

.industry-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 40px;
    background: rgba(184, 115, 51, .10);
    color: var(--secondary);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.case-content h3 {
    margin-bottom: 25px;
    color: var(--primary);
    line-height: 1.4;
}

.case-item {
    margin-bottom: 20px;
}

.case-item h4 {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 8px;
    font-family: var(--body);
    font-weight: 700;
}

.case-item p {
    color: var(--grey);
    line-height: 1.8;
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--secondary);
    font-weight: 700;
}

.case-link i {
    transition: .3s;
}

.case-link:hover i {
    transform: translateX(8px);
}

/*==============================
          INSIGHTS
==============================*/

.insights {
    background: var(--light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: .35s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-card img {
    height: 240px;
    object-fit: cover;
    transition: .45s;
}

.blog-card:hover img {
    transform: scale(1.06);
}

.blog-content {
    padding: 28px;
}

.blog-content span {
    display: inline-block;
    color: var(--secondary);
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: .5px;
}

.blog-content h3 {
    font-size: 1.45rem;
    color: var(--primary);
    margin-bottom: 18px;
    line-height: 1.4;
}

.blog-content p {
    margin-bottom: 25px;
    color: var(--grey);
    line-height: 1.8;
}

.blog-content a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-weight: 700;
}

.blog-content a i {
    transition: .3s;
}

.blog-content a:hover i {
    transform: translateX(8px);
}

/*==============================
      SECTION BUTTON
==============================*/

.section-button {
    text-align: center;
    margin-top: 60px;
}

/*==============================
      RESPONSIVE
==============================*/

@media(max-width:1200px) {

    .case-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .case-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .case-image img,
    .blog-card img {
        height: 220px;
    }

    .case-content,
    .blog-content {
        padding: 25px;
    }

    .case-content h3,
    .blog-content h3 {
        font-size: 1.3rem;
    }

}

@media(max-width:576px) {

    .case-image img,
    .blog-card img {
        height: 200px;
    }

    .case-content,
    .blog-content {
        padding: 22px;
    }

    .industry-tag {
        font-size: .75rem;
    }

    .blog-content span {
        font-size: .75rem;
    }

}


/*==============================
        FINAL CTA
==============================*/

.final-cta {
    background: linear-gradient(135deg, #0B1E3C 0%, #132C56 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -150px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
}

.final-cta::after {
    content: "";
    position: absolute;
    bottom: -180px;
    left: -180px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(184, 115, 51, .10);
}

.cta-wrapper {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.cta-wrapper .section-tag {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.cta-wrapper h2 {
    color: #fff;
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin: 20px 0;
}

.cta-wrapper p {
    color: rgba(255, 255, 255, .85);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.final-cta .btn-primary {
    background: var(--secondary);
    color: #fff;
}

.final-cta .btn-primary:hover {
    background: #fff;
    color: var(--primary);
}

.final-cta .btn-outline {
    border: 2px solid rgba(255, 255, 255, .35);
    color: #fff;
}

.final-cta .btn-outline:hover {
    background: #fff;
    color: var(--primary);
}

/*==============================
        FOOTER
==============================*/

.footer {
    background: #081628;
    color: #fff;
    padding: 90px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 70px;
}

.footer-logo {
    width: 190px;
    margin-bottom: 25px;
}

.footer-column p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.9;
    margin-bottom: 30px;
    max-width: 380px;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 28px;
    font-size: 1.4rem;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 45px;
    height: 3px;
    background: var(--secondary);
    border-radius: 50px;
}

/*==============================
      FOOTER LINKS
==============================*/

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 16px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, .72);
    transition: .3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-column ul li a:hover {
    color: var(--secondary);
    transform: translateX(6px);
}

/*==============================
      CONTACT LIST
==============================*/

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
}

.contact-list i {
    color: var(--secondary);
    margin-top: 4px;
    font-size: 1rem;
}

/*==============================
      SOCIAL ICONS
==============================*/

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    transition: .35s ease;
    font-size: 1.1rem;
}

.social-icons a:hover {
    background: var(--secondary);
    transform: translateY(-6px);
}

/*==============================
      RESPONSIVE
==============================*/

@media(max-width:1200px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer {
        text-align: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column p {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-list li {
        justify-content: center;
        text-align: left;
    }

    .social-icons {
        justify-content: center;
    }

}

@media(max-width:576px) {

    .final-cta {
        padding: 90px 0;
    }

    .cta-wrapper h2 {
        font-size: 2rem;
    }

    .cta-wrapper p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        width: 100%;
    }

    .footer {
        padding-top: 70px;
    }

    .footer-logo {
        width: 170px;
    }

}


/*=========================================
  FOOTER BOTTOM
=========================================*/

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 25px 0;
    background: #06101d;
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: rgba(255, 255, 255, .65);
    font-size: .95rem;
}

.footer-bottom div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, .65);
    font-size: .95rem;
    transition: .3s;
}

.footer-bottom a:hover {
    color: var(--secondary);
}

.footer-bottom span {
    color: rgba(255, 255, 255, .25);
}

/*=========================================
  WHATSAPP BUTTON
=========================================*/

.whatsapp-btn {
    position: fixed;
    right: 25px;
    bottom: 30px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 15px 35px rgba(37, 211, 102, .35);
    z-index: 999;
    transition: .35s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 20px 45px rgba(37, 211, 102, .45);
}

/*=========================================
  BACK TO TOP
=========================================*/

#backToTop {
    position: fixed;
    right: 25px;
    bottom: 105px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
    z-index: 998;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

/*=========================================
  SCROLL PROGRESS BAR
=========================================*/

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--secondary);
    z-index: 9999;
    transition: width .15s linear;
}

/*=========================================
  SELECTION
=========================================*/

::selection {
    background: var(--secondary);
    color: #fff;
}

/*=========================================
  IMAGE EFFECTS
=========================================*/

img {
    user-select: none;
    -webkit-user-drag: none;
}

.hero-image img,
.case-image img,
.blog-card img,
.why-image img {
    transition: transform .45s ease;
}

/*=========================================
  SIMPLE FADE ANIMATION
=========================================*/

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all .8s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/*=========================================
  HOVER UTILITIES
=========================================*/

.hover-up {
    transition: .35s ease;
}

.hover-up:hover {
    transform: translateY(-10px);
}

.shadow-hover {
    transition: .35s ease;
}

.shadow-hover:hover {
    box-shadow: var(--shadow-lg);
}

/*=========================================
  RESPONSIVE
=========================================*/

@media(max-width:992px) {

    .footer-bottom-wrapper {
        flex-direction: column;
        text-align: center;
    }

}

@media(max-width:768px) {

    .whatsapp-btn {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
        right: 18px;
        bottom: 18px;
    }

    #backToTop {
        width: 50px;
        height: 50px;
        right: 18px;
        bottom: 88px;
    }

    .footer-bottom div {
        flex-wrap: wrap;
        justify-content: center;
    }

}

@media(max-width:576px) {

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom p,
    .footer-bottom a {
        font-size: .85rem;
    }

    .whatsapp-btn {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }

    #backToTop {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }

}



/*=========================================================
  LARGE DESKTOP (1400px)
=========================================================*/

@media (max-width:1400px) {

    .container {
        width: 92%;
    }

    .hero-grid,
    .why-grid {
        gap: 60px;
    }

    .hero h1 {
        font-size: 4rem;
    }

}

/*=========================================================
  LAPTOP (1200px)
=========================================================*/

@media (max-width:1200px) {

    section {
        padding: 90px 0;
    }

    /* Header */

    .logo img {
        width: 170px;
    }

    .navbar ul {
        gap: 22px;
    }

    /* Hero */

    .hero {
        padding-top: 150px;
    }

    .hero-grid {
        gap: 45px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Trust */

    .trust-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Services */

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Industries */

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Process */

    .process-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Why */

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-image {
        order: -1;
    }

    /* Case Studies */

    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Blog */

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Logos */

    .logo-slider {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Footer */

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/*=========================================================
  TABLET (992px)
=========================================================*/

@media (max-width:992px) {

    /* Header */

    .header-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 80px;
        position: relative;
        width: 100%;
    }

    .logo {
        display: flex;
        align-items: center;
    }

    .logo img {
        width: 160px;
        height: auto;
    }

    .header-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        margin-left: 15px;
        flex: 0 0 42px;
        font-size: 2rem;
        color: var(--primary);
        cursor: pointer;
        z-index: 10001;
    }

    .navbar {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        transition: left .35s ease;
        padding: 25px;
        overflow-y: auto;
        z-index: 10000;
    }

    .navbar.active {
        left: 0;
    }

    .navbar ul {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .navbar li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .navbar li a {
        display: block;
        padding: 18px 0;
    }



    /* Hero */

    .hero {

        padding-top: 140px;
        text-align: center;

    }

    .hero-grid {

        grid-template-columns: 1fr;

    }

    .hero-image {

        order: -1;

    }

    .hero-buttons {

        justify-content: center;

    }

    .hero-features {

        justify-content: center;

    }

    /* Trust */

    .trust-content {

        grid-template-columns: 1fr;

    }

    /* Services */

    .service-grid {

        grid-template-columns: 1fr;

    }

    /* Industries */

    .industry-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    /* Process */

    .process-wrapper {

        grid-template-columns: repeat(2, 1fr);

    }

    /* Why */

    .why-list {

        grid-template-columns: 1fr;

    }

    /* Case */

    .case-grid {

        grid-template-columns: 1fr;

    }

    /* Blog */

    .blog-grid {

        grid-template-columns: 1fr;

    }

    /* CTA */

    .cta-buttons {

        justify-content: center;

    }

    /* Footer */

    .footer-grid {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .footer-column p {

        margin: auto;

    }

    .contact-list li {

        justify-content: center;

    }

    .social-icons {

        justify-content: center;

    }

    .footer-column h3::after {

        left: 50%;
        transform: translateX(-50%);

    }

}

/*=========================================================
  SMALL TABLET (820px)
=========================================================*/

@media (max-width:820px) {

    .hero h1 {

        font-size: 3rem;

    }

    .hero-content p {

        font-size: 1rem;

    }

    .section-heading {

        margin-bottom: 50px;

    }

    section {

        padding: 80px 0;

    }

}

/*=========================================================
  TABLET LANDSCAPE (768px)
=========================================================*/

@media (max-width:768px) {

    .hero {

        padding-top: 130px;

    }

    .hero h1 {

        font-size: 2.8rem;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .hero-buttons a {

        width: 100%;

    }

    .hero-features {

        flex-direction: column;
        gap: 15px;

        align-items: center;

    }

    .trust-wrapper {

        grid-template-columns: 1fr;

    }

    .industry-grid {

        grid-template-columns: 1fr;

    }

    .process-wrapper {

        grid-template-columns: 1fr;

    }

    .logo-slider {

        grid-template-columns: repeat(2, 1fr);

    }

}

/* =========================================================
   RESPONSIVE.CSS - PART 2A
   Mobile Devices (576px & 480px)
========================================================= */

/* ==============================
   MOBILE DEVICES (576px)
============================== */

@media screen and (max-width:576px) {

    html {
        font-size: 15px;
    }

    body {
        overflow-x: hidden;
    }

    section {
        padding: 70px 0;
    }

    .container {
        width: 92%;
    }

    /* Hero */

    .hero {
        padding-top: 120px;
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.3rem;
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 1rem;
        margin: 20px auto 30px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        margin-top: 30px;
    }

    /* Heading */

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .section-heading p {
        font-size: .95rem;
    }

    /* Cards */

    .service-card,
    .industry-card,
    .process-card,
    .case-card,
    .blog-card {
        padding: 25px;
    }

    .service-card h3,
    .industry-card h3,
    .process-card h3,
    .blog-content h3 {
        font-size: 1.35rem;
    }

    .case-image img,
    .blog-card img {
        height: 200px;
        object-fit: cover;
    }

    /* Trust */

    .trust-wrapper h3 {
        font-size: 2rem;
    }

    .trust-wrapper p {
        font-size: .95rem;
    }

    /* CTA */

    .cta-wrapper h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        width: 100%;
        justify-content: center;
    }

    /* Footer */

    .footer {
        text-align: center;
    }

    .footer-grid {
        gap: 35px;
    }

    .footer-column p {
        margin: auto;
    }

    .social-icons {
        justify-content: center;
    }

}

/* ==============================
   SMALL MOBILE (480px)
============================== */

@media screen and (max-width:480px) {

    html {
        font-size: 14px;
    }

    .logo img {
        width: 150px;
    }

    .hero {
        padding-top: 110px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: .95rem;
    }

    .btn-primary,
    .btn-outline {
        padding: 14px 24px;
        font-size: .95rem;
    }

    .hero-image img {
        border-radius: 18px;
    }

    .industry-icon,
    .service-card .icon {
        width: 60px;
        height: 60px;
    }

    .industry-icon i,
    .service-card .icon i {
        font-size: 1.5rem;
    }

    .number {
        width: 55px;
        height: 55px;
        font-size: 1.1rem;
    }

    .section-heading h2 {
        font-size: 1.8rem;
    }

    .blog-content,
    .case-content {
        padding: 20px;
    }

    .case-image img,
    .blog-card img {
        height: 180px;
    }

    .footer-logo {
        width: 150px;
    }

}




/*=========================================================
  MOBILE (400px)
=========================================================*/

@media screen and (max-width:400px) {

    html {
        font-size: 14px;
    }

    body {
        overflow-x: hidden;
    }

    section {
        padding: 60px 0;
    }

    /* Header */

    .header-wrapper {
        min-height: 72px;
    }

    .logo img {
        width: 135px;
        height: auto;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Hero */

    .hero {
        padding-top: 105px;
    }

    .hero-grid {
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 1.85rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: .92rem;
        line-height: 1.8;
    }

    .hero-image img {
        border-radius: 16px;
    }

    /* Buttons */

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 14px 18px;
        font-size: .9rem;
    }

    /* Headings */

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 1.65rem;
    }

    .section-heading p {
        font-size: .92rem;
    }

    /* Cards */

    .service-card,
    .industry-card,
    .process-card,
    .case-card,
    .blog-card {
        padding: 20px;
    }

    .service-card h3,
    .industry-card h3,
    .process-card h3,
    .blog-content h3,
    .case-content h3 {
        font-size: 1.2rem;
    }

    .case-image img,
    .blog-card img {
        height: 170px;
    }

    /* CTA */

    .cta-wrapper h2 {
        font-size: 1.8rem;
    }

    .cta-wrapper p {
        font-size: .92rem;
    }

    /* Footer */

    .footer {
        padding-top: 60px;
    }

    .footer-logo {
        width: 140px;
    }

    .footer-column h3 {
        font-size: 1.2rem;
    }

    .footer-column p,
    .footer-column li,
    .footer-column a {
        font-size: .9rem;
    }

}

/*=========================================================
  EXTRA SMALL (360px)
=========================================================*/

@media screen and (max-width:360px) {

    html {
        font-size: 13px;
    }

    .container {
        width: 94%;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-content p {
        font-size: .9rem;
    }

    .hero-features {
        gap: 10px;
    }

    .hero-features div {
        font-size: .85rem;
    }

    .section-heading h2 {
        font-size: 1.5rem;
    }

    .service-card,
    .industry-card,
    .process-card,
    .case-card,
    .blog-card {
        padding: 18px;
    }

    .industry-icon,
    .service-card .icon {
        width: 52px;
        height: 52px;
    }

    .industry-icon i,
    .service-card .icon i {
        font-size: 1.3rem;
    }

    .number {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    .case-image img,
    .blog-card img {
        height: 155px;
    }

    .cta-wrapper h2 {
        font-size: 1.6rem;
    }

    .footer-logo {
        width: 130px;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

}

/* ==========================================================
   RESPONSIVE.CSS - PART 3B-1
   Footer Bottom | Contact Form | Floating Buttons
========================================================== */

/* ===========================
   TABLET (768px)
=========================== */

@media screen and (max-width:768px) {

    /* Contact Form */

    .contact-form {
        padding: 35px 25px;
    }

    .contact-form .form-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100%;
        padding: 14px 16px;
        font-size: 15px;
    }

    .contact-form textarea {
        min-height: 160px;
    }

    .contact-form button {
        width: 100%;
    }

    /* Footer Bottom */

    .footer-bottom-wrapper {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    /* Floating Buttons */

    .whatsapp-btn {
        width: 58px;
        height: 58px;
        right: 18px;
        bottom: 18px;
        font-size: 24px;
    }

    #backToTop {
        width: 50px;
        height: 50px;
        right: 18px;
        bottom: 90px;
        font-size: 18px;
    }

}

/* ===========================
   MOBILE (576px)
=========================== */

@media screen and (max-width:576px) {

    .contact-form {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .contact-form h2 {
        font-size: 1.8rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 13px 14px;
        font-size: 14px;
    }

    .footer-bottom {
        padding: 18px 0;
    }

    .footer-bottom p,
    .footer-bottom a {
        font-size: .9rem;
    }

    .whatsapp-btn {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }

    #backToTop {
        width: 46px;
        height: 46px;
        bottom: 82px;
        font-size: 16px;
    }

}

/* ===========================
   EXTRA SMALL (400px)
=========================== */

@media screen and (max-width:400px) {

    .contact-form {
        padding: 20px 16px;
    }

    .contact-form h2 {
        font-size: 1.6rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom p {
        line-height: 1.6;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 15px;
        font-size: 20px;
    }

    #backToTop {
        width: 44px;
        height: 44px;
        right: 15px;
        bottom: 74px;
        font-size: 15px;
    }

}


/*=========================================
        GLOBAL ANIMATIONS
=========================================*/

* {
    transition: all .35s ease;
}

/*=========================================
        HERO IMAGE FLOAT
=========================================*/

.hero {
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .02);
    animation: heroPulse 8s ease-in-out infinite;
}

@keyframes heroPulse {

    0% {
        opacity: .15;
    }

    50% {
        opacity: .35;
    }

    100% {
        opacity: .15;
    }

}

/*=========================================
        FLOAT EFFECT
=========================================*/

.float {

    animation: float 5s ease-in-out infinite;

}

@keyframes float {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }

}

/*=========================================
        FADE UP
=========================================*/

.fade-up {

    opacity: 0;

    transform: translateY(60px);

    transition: all .9s ease;

}

.fade-up.show {

    opacity: 1;

    transform: translateY(0);

}

/*=========================================
        FADE LEFT
=========================================*/

.fade-left {

    opacity: 0;

    transform: translateX(-80px);

    transition: .9s;

}

.fade-left.show {

    opacity: 1;

    transform: translateX(0);

}

/*=========================================
        FADE RIGHT
=========================================*/

.fade-right {

    opacity: 0;

    transform: translateX(80px);

    transition: .9s;

}

.fade-right.show {

    opacity: 1;

    transform: translateX(0);

}

/*=========================================
        ZOOM
=========================================*/

.zoom {

    opacity: 0;

    transform: scale(.9);

    transition: .8s;

}

.zoom.show {

    opacity: 1;

    transform: scale(1);

}

/*=========================================
        SERVICE CARDS
=========================================*/

.service-card {

    transition: .45s;

}

.service-card:hover {

    transform: translateY(-18px);

    box-shadow: 0 30px 60px rgba(0, 0, 0, .15);

}

.service-card:hover .icon {

    transform: rotate(12deg) scale(1.08);

}

/*=========================================
        INDUSTRY CARDS
=========================================*/

.industry-card:hover {

    transform: translateY(-18px);

    box-shadow: 0 30px 60px rgba(0, 0, 0, .12);

}

.industry-card:hover .industry-icon {

    transform: rotate(-10deg);

}

/*=========================================
        PROCESS CARDS
=========================================*/

.process-card:hover {

    transform: translateY(-15px);

}

.process-card:hover .number {

    transform: rotate(360deg);

}

/*=========================================
        CASE STUDIES
=========================================*/

.case-card {

    overflow: hidden;

}

.case-card img {

    transition: 1s;

}

.case-card:hover img {

    transform: scale(1.1);

}

.case-card:hover {

    transform: translateY(-15px);

}

/*=========================================
        BLOG
=========================================*/

.blog-card img {

    transition: 1s;

}

.blog-card:hover img {

    transform: scale(1.08);

}

.blog-card:hover {

    transform: translateY(-15px);

}

/*=========================================
        BUTTONS
=========================================*/

.btn-primary {

    position: relative;

    overflow: hidden;

}

.btn-primary::before {

    content: "";

    position: absolute;

    left: -120%;

    top: 0;

    width: 100%;

    height: 100%;

    background: rgba(255, 255, 255, .18);

    transform: skewX(-25deg);

}

.btn-primary:hover::before {

    left: 130%;

    transition: .7s;

}

/*=========================================
        IMAGE HOVER
=========================================*/

img {

    transition: .5s;

}

/*=========================================
        LOGOS
=========================================*/

.logo-slider img {

    opacity: .6;

    transition: .4s;

}

.logo-slider img:hover {

    opacity: 1;

    transform: scale(1.08);

}

/*=========================================
        NAVIGATION
=========================================*/

.navbar a {

    position: relative;

}

.navbar a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: #B87333;

    transition: .35s;

}

.navbar a:hover::after {

    width: 100%;

}

/*=========================================
        WHATSAPP
=========================================*/

.whatsapp-btn {

    animation: pulse 2s infinite;

}

@keyframes pulse {

    0% {

        box-shadow: 0 0 0 0 rgba(37, 211, 102, .6);

    }

    70% {

        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);

    }

    100% {

        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);

    }

}

/*=========================================
        BACK TO TOP
=========================================*/

#backToTop:hover {

    transform: translateY(-8px);

}

html,
body {
    overflow-x: hidden;
}