:root {
    /* =========================
       SKYTECH BRAND COLORS
    ========================= */

    --skytech-primary: #E84B4B;
    --skytech-dark: #241414;
    --skytech-light: #FFF3F2;

    --skytech-text: #333333;
    --skytech-white: #ffffff;
    --skytech-border: #eadede;
    --skytech-muted: #666666;

    /* Extra brand colors */
    --skytech-red-dark: #C93636;
    --skytech-red-soft: #FDE7E5;
}


/* =========================
   GENERAL
========================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--skytech-text);
    background: var(--skytech-white);
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}


/* =========================
   TOP BAR
========================= */

.top-bar {
    background: var(--skytech-dark);
    color: var(--skytech-white);
    font-size: 14px;
}

.top-bar-wrapper {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.welcome-text {
    margin: 0;
}

.top-contact {
    display: flex;
    gap: 20px;
}

.top-contact a {
    color: var(--skytech-white);
    text-decoration: none;
    transition: 0.3s;
}

.top-contact a:hover {
    color: var(--skytech-primary);
}

html,
body {
    overflow: visible !important;
}

.site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 99999 !important;
}

/* =========================
   HEADER
========================= */

.site-header {
    background: var(--skytech-white);
    border-bottom: 1px solid var(--skytech-border);

    position: -webkit-sticky;
    position: sticky;
    top: 0;

    z-index: 9999;
}

.header-wrapper {
    min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* =========================
   LOGO
========================= */

.logo-area {
    flex-shrink: 0;
}

.site-logo {
    display: inline-flex;
    align-items: center;
}

.site-logo img {
    width: 180px;
    max-width: 100%;
    height: auto;
    display: block;
}

.contact-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 170px;
    max-width: 100%;
    height: auto;
    display: block;
}


/* =========================
   NAVIGATION
========================= */

.main-navigation {
    margin-left: auto;
}

.main-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-navigation ul li {
    margin: 0;
    padding: 0;
}

.main-navigation ul li a {
    display: block;
    padding: 12px 14px;
    color: var(--skytech-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.main-navigation ul li a:hover,
.main-navigation ul li a.active {
    color: var(--skytech-primary);
}


/* =========================
   MOBILE MENU BUTTON
========================= */

.mobile-menu-btn {
    display: none;
    border: 0;
    background: var(--skytech-primary);
    color: var(--skytech-white);
    width: 42px;
    height: 42px;
    border-radius: 4px;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.mobile-menu-btn:hover {
    background: var(--skytech-red-dark);
}


/* =========================
   SECTION HEADING
========================= */

.section-heading {
    max-width: 800px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-heading span {
    display: block;
    color: var(--skytech-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0 0 15px;
    color: var(--skytech-dark);
    font-size: 34px;
    line-height: 1.3;
}

.section-heading p {
    margin: 0;
    color: var(--skytech-muted);
}


/* =========================
   HERO
========================= */

.hero-section {
    min-height: 580px;

    display: flex;
    align-items: center;

    position: relative;

    background:
        linear-gradient(90deg,
            rgba(36, 20, 20, 0.92) 0%,
            rgba(36, 20, 20, 0.78) 45%,
            rgba(36, 20, 20, 0.35) 100%),
        url("../image/22332d36-fa61-4be8-b1f2-c7f5098d1d2d.jpg") center center / cover no-repeat;
}

.hero-content {
    width: 90%;
    max-width: 1300px;
    margin-left: 6%; /* આનાથી કન્ટેન્ટ ડાબી બાજુ ખસશે */
    margin-right: auto;
    color: var(--skytech-white);
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-small-title {
    display: block;
    color: #FFD6D2;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 800px;
    margin: 0 0 20px;
    font-size: 52px;
    line-height: 1.15;
}

.hero-content p {
    max-width: 760px;
    font-size: 17px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.cta-btn {
    display: inline-block;
    padding: 13px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: 0.3s;
}


/* PRIMARY BUTTON */

.btn-primary {
    background: var(--skytech-primary);
    color: var(--skytech-white);
    border: 1px solid var(--skytech-primary);
}

.btn-primary:hover {
    background: var(--skytech-red-dark);
    border-color: var(--skytech-red-dark);
    color: var(--skytech-white);
}


/* SECONDARY BUTTON */

.btn-secondary {
    border: 1px solid var(--skytech-white);
    color: var(--skytech-white);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--skytech-white);
    color: var(--skytech-red-dark);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
    font-size: 14px;
}


/* =========================
   ABOUT
========================= */

.about-section {
    background: var(--skytech-white);
}

.about-text {
    max-width: 950px;
    margin: auto;
    text-align: center;
}

.about-text p {
    margin-bottom: 18px;
}


/* =========================
   SERVICES
========================= */

.services-section {
    background: var(--skytech-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    padding: 30px;
    background: var(--skytech-white);
    border: 1px solid var(--skytech-border);
    border-radius: 8px;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--skytech-primary);
    box-shadow: 0 10px 30px rgba(232, 75, 75, 0.12);
}

.service-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--skytech-red-soft);
    color: var(--skytech-primary);

    border-radius: 50%;
    font-size: 22px;
    margin-bottom: 18px;
}

.service-card h3 {
    color: var(--skytech-dark);
    margin-bottom: 10px;
}


/* =========================================
   SKYTECH DATA LOSS SOLUTIONS
========================================= */

.loss-section {
    padding: 75px 0;
    background: var(--skytech-white);
}


/* =========================================
   SECTION HEADING
========================================= */

.loss-section .section-heading {
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: center;
}

.loss-section .section-heading span {
    display: inline-block;
    margin-bottom: 9px;

    color: var(--skytech-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.loss-section .section-heading h2 {
    margin: 0 0 14px;

    color: var(--skytech-dark);
    font-size: 34px;
    line-height: 1.3;
    font-weight: 700;
}

.loss-section .section-heading p {
    max-width: 760px;
    margin: 0 auto;

    color: var(--skytech-muted);
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   LOSS GRID
========================================= */

.loss-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


/* =========================================
   LOSS CARD
========================================= */

.loss-card {
    position: relative;

    display: flex;
    align-items: flex-start;
    gap: 16px;

    min-height: 165px;
    padding: 23px 20px;

    background: var(--skytech-white);

    border: 1px solid var(--skytech-border);
    border-radius: 8px;

    overflow: hidden;

    transition: all 0.3s ease;
}


/* TOP ACCENT */

.loss-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: var(--skytech-primary);

    transition: width 0.3s ease;
}

.loss-card:hover::before {
    width: 100%;
}


/* CARD HOVER */

.loss-card:hover {
    border-color: var(--skytech-primary);

    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(232, 75, 75, 0.10);
}


/* =========================================
   LOSS ICON
========================================= */

.loss-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 2px;

    background: var(--skytech-red-soft);

    border: 1px solid #f5d5d1;
    border-radius: 8px;

    color: var(--skytech-primary);

    font-size: 19px;

    transition: all 0.3s ease;
}


/* ICON HOVER */

.loss-card:hover .loss-icon {
    background: var(--skytech-primary);
    border-color: var(--skytech-primary);
    color: var(--skytech-white);

    transform: scale(1.08);
}


/* =========================================
   LOSS CONTENT
========================================= */

.loss-content {
    flex: 1;
    min-width: 0;
}

.loss-content h3 {
    margin: 0 0 8px;

    color: var(--skytech-dark);

    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}

.loss-content p {
    margin: 0;

    color: var(--skytech-muted);

    font-size: 13px;
    line-height: 1.65;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .loss-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .loss-card {
        min-height: 150px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .loss-section {
        padding: 55px 0;
    }

    .loss-section .section-heading {
        margin-bottom: 32px;
    }

    .loss-section .section-heading h2 {
        font-size: 28px;
    }

    .loss-section .section-heading p {
        font-size: 14px;
    }

    .loss-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .loss-card {
        min-height: auto;
        padding: 20px 18px;
    }

    .loss-icon {
        width: 45px;
        min-width: 45px;
        height: 45px;

        font-size: 18px;
    }

    .loss-content h3 {
        font-size: 15px;
    }

    .loss-content p {
        font-size: 13px;
    }

}

/* =========================
   WHY CHOOSE US
========================= */
/* =========================================
   WHY CHOOSE SKYTECH
========================================= */

.why-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.why-card {
    background: #ffffff;
    border: 1px solid #eadede;
    border-radius: 10px;
    padding: 30px 22px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--skytech-primary);
    box-shadow: 0 10px 25px rgba(232, 75, 75, 0.10);
}

.why-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--skytech-red-soft);
    color: var(--skytech-primary);

    border-radius: 50%;
    font-size: 22px;
}

.why-card h3 {
    margin: 0 0 10px;
    color: var(--skytech-dark);
    font-size: 19px;
}

.why-card p {
    margin: 0;
    color: var(--skytech-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   SAFETY TIPS
   WHITE BACKGROUND
========================================= */

.safety-section {
    padding: 80px 0;
    background: #ffffff;

    border-top: 1px solid #eadede;
    border-bottom: 1px solid #eadede;
}


/* SAFETY HEADING */

.safety-section .section-heading {
    max-width: 800px;
    margin: 0 auto 45px;
    text-align: center;
}

.safety-section .section-heading span {
    display: inline-block;

    margin-bottom: 8px;

    color: var(--skytech-primary);

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.safety-section .section-heading h2 {
    margin: 0 0 15px;

    color: var(--skytech-dark);

    font-size: 34px;
    line-height: 1.3;
}

.safety-section .section-heading p {
    margin: 0;

    color: var(--skytech-muted);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   SAFETY GRID
========================================= */

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* =========================================
   SAFETY CARD
========================================= */

.safety-card {
    background: #ffffff;

    border: 1px solid var(--skytech-border);
    border-radius: 10px;

    padding: 28px;

    display: flex;
    align-items: flex-start;

    gap: 18px;

    transition: all 0.3s ease;
}

.safety-card:hover {
    transform: translateY(-5px);

    border-color: var(--skytech-primary);

    box-shadow:
        0 10px 25px rgba(232, 75, 75, 0.10);
}


/* =========================================
   SAFETY ICON
========================================= */

.safety-icon {
    width: 52px;
    min-width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--skytech-red-soft);

    color: var(--skytech-primary);

    border: 1px solid #f5d5d1;

    border-radius: 50%;

    font-size: 20px;

    transition: all 0.3s ease;
}

.safety-card:hover .safety-icon {
    background: var(--skytech-primary);
    border-color: var(--skytech-primary);
    color: #ffffff;
}


/* =========================================
   SAFETY CONTENT
========================================= */

.safety-content {
    flex: 1;
}

.safety-content h3 {
    margin: 0 0 8px;

    color: var(--skytech-dark);

    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.safety-content p {
    margin: 0;

    color: var(--skytech-muted);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   SAFETY CTA
========================================= */

.safety-note {
    margin-top: 40px;

    padding: 25px 30px;

    background: var(--skytech-dark);

    border-radius: 10px;

    display: flex;
    align-items: center;

    gap: 20px;
}

.safety-note-icon {
    min-width: 45px;

    color: var(--skytech-primary);

    font-size: 30px;
}

.safety-note-content {
    flex: 1;
}

.safety-note-content h3 {
    margin: 0 0 6px;

    color: #ffffff;

    font-size: 20px;
}

.safety-note-content p {
    margin: 0;

    color: #e3d5d5;

    font-size: 14px;
    line-height: 1.6;
}

.safety-note-btn .btn-primary {
    white-space: nowrap;
}


/* =========================================
   NAVIGATION SCROLL OFFSET
========================================= */

#why-skytech,
#safety-tips {
    scroll-margin-top: 100px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .why-section,
    .safety-section {
        padding: 55px 0;
    }

    .why-grid,
    .safety-grid {
        grid-template-columns: 1fr;
    }

    .safety-note {
        flex-direction: column;
        align-items: flex-start;
    }

    .safety-note-btn {
        margin-top: 5px;
    }

}



/* =========================================
   SKYTECH DATA RECOVERY PROCESS
========================================= */

.process-section {
    padding: 65px 0;
    background: #f8f9fa;
}


/* SECTION HEADING */

.process-section .section-heading {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.process-section .section-heading span {
    display: inline-block;
    margin-bottom: 8px;
    color: #e34b3f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.process-section .section-heading h2 {
    margin: 0 0 12px;
    color: #222222;
    font-size: 34px;
    font-weight: 700;
}

.process-section .section-heading p {
    margin: 0;
    color: #666666;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   PROCESS FLOW
========================================= */

.process-flow {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
}


/* PROCESS STEP */

.process-step {
    flex: 1;
    min-width: 0;
    padding: 25px 15px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 7px;
    text-align: center;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: #e34b3f;
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
}


/* NUMBER */

.process-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e34b3f;
    color: #ffffff;

    border-radius: 50%;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    background: #c9362b;
}


/* TITLE */

.process-step h3 {
    margin: 0 0 9px;
    color: #222222;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}


/* TEXT */

.process-step p {
    margin: 0;
    color: #666666;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================
   ARROW
========================================= */

.process-arrow {
    width: 38px;
    min-width: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #e34b3f;
    font-size: 20px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .process-step {
        padding: 22px 10px;
    }

    .process-step h3 {
        font-size: 15px;
    }

    .process-step p {
        font-size: 12px;
    }

    .process-arrow {
        width: 25px;
        min-width: 25px;
        font-size: 16px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .process-section {
        padding: 50px 0;
    }

    .process-section .section-heading {
        margin-bottom: 30px;
    }

    .process-section .section-heading h2 {
        font-size: 28px;
    }

    .process-flow {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .process-step {
        padding: 22px 15px;
    }

    .process-arrow {
        display: none;
    }

    .process-number {
        width: 44px;
        height: 44px;
        margin-bottom: 13px;
    }

}

/* =========================
   SAFETY
========================= */

.safety-section {
    background: var(--skytech-light);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.safety-card {
    background: var(--skytech-white);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--skytech-border);
    transition: 0.3s;
}

.safety-card:hover {
    border-color: var(--skytech-primary);
}

.safety-card h3 {
    color: var(--skytech-dark);
}

/* =========================================
   SKYTECH PROFESSIONAL FAQ
========================================= */

.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-section .section-heading {
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: center;
}

.faq-section .section-heading span {
    display: inline-block;
    margin-bottom: 10px;
    color: #e34b3f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.faq-section .section-heading h2 {
    margin: 0 0 15px;
    color: #222222;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
}

.faq-section .section-heading p {
    margin: 0;
    color: #666666;
    font-size: 16px;
    line-height: 1.7;
}


/* FAQ LIST */

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}


/* FAQ ITEM */

.faq-item {
    margin-bottom: 14px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item:hover {
    border-color: #e34b3f;
}

.faq-item.active {
    border-color: #e34b3f;
    box-shadow: 0 8px 25px rgba(227, 75, 63, 0.10);
}


/* QUESTION */

.faq-question {
    width: 100%;
    padding: 20px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    background: #ffffff;
    border: 0;
    outline: 0;

    color: #222222;
    font-size: 17px;
    font-weight: 600;

    text-align: left;
    cursor: pointer;

    transition: 0.3s ease;
}

.faq-question:hover {
    color: #e34b3f;
}


/* ACTIVE QUESTION */

.faq-item.active .faq-question {
    color: #e34b3f;
}


/* PLUS ICON */

.faq-question i {
    width: 34px;
    height: 34px;
    min-width: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f8f8f8;
    color: #e34b3f;

    border-radius: 50%;

    font-size: 13px;

    transition: 0.3s ease;
}


/* ACTIVE ICON */

.faq-item.active .faq-question i {
    background: #e34b3f;
    color: #ffffff;
    transform: rotate(45deg);
}


/* ANSWER */

.faq-answer {
    display: none;
    padding: 0 24px 22px;
    border-top: 1px solid #eeeeee;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    margin: 18px 0 0;

    color: #666666;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .faq-section {
        padding: 50px 0;
    }

    .faq-section .section-heading {
        margin-bottom: 30px;
    }

    .faq-section .section-heading h2 {
        font-size: 28px;
    }

    .faq-section .section-heading p {
        font-size: 15px;
    }

    .faq-question {
        padding: 17px 18px;
        font-size: 15px;
    }

    .faq-question i {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 12px;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 1.7;
    }

}


/* =========================
   CONTACT
========================= */

.contact-section {
    background: var(--skytech-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: var(--skytech-white);
    padding: 35px;
    border-radius: 8px;
    border: 1px solid var(--skytech-border);
}

.contact-info h3 {
    color: var(--skytech-dark);
    font-size: 25px;
}

.contact-detail {
    margin-top: 20px;
}

.contact-detail strong {
    display: block;
    color: var(--skytech-dark);
}

.contact-detail a {
    color: var(--skytech-primary);
    text-decoration: none;
}

.contact-detail a:hover {
    color: var(--skytech-red-dark);
}

.contact-form {
    background: var(--skytech-white);
    padding: 35px;
    border-radius: 8px;
    border: 1px solid var(--skytech-border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;

    padding: 13px 15px;

    border: 1px solid #d9cccc;
    border-radius: 4px;

    font-family: inherit;
    font-size: 15px;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--skytech-primary);
    box-shadow: 0 0 0 3px rgba(232, 75, 75, 0.10);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    border: 0;
    padding: 14px 28px;

    background: var(--skytech-primary);
    color: var(--skytech-white);

    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;

    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--skytech-red-dark);
}


/* =========================
   FINAL CTA
========================= */

.final-cta {
    padding: 65px 20px;
    text-align: center;

    background:
        linear-gradient(135deg,
            var(--skytech-dark),
            #401b1b);

    color: var(--skytech-white);
}

.final-cta h2 {
    margin: 0 0 10px;
    font-size: 34px;
}

.final-cta p {
    margin-bottom: 25px;
}

.cta-btn {
    background: var(--skytech-primary);
    color: var(--skytech-white);
    border: 1px solid var(--skytech-primary);
}

.cta-btn:hover {
    background: var(--skytech-white);
    color: var(--skytech-red-dark);
}


/* =========================
   FOOTER
========================= */

.site-footer {
    background: var(--skytech-dark);
    color: var(--skytech-white);
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 45px;
    padding: 65px 0;
}

.footer-about p {
    margin: 0 0 20px;
    color: #e3d5d5;
    font-size: 14px;
    line-height: 1.8;
}

.footer-column h3 {
    margin: 0 0 20px;
    color: var(--skytech-primary);
    font-size: 20px;
    font-weight: 700;
}


/* FOOTER LINKS */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #e3d5d5;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: var(--skytech-primary);
    padding-left: 4px;
}


/* FOOTER BUTTON */

.footer-btn {
    display: inline-block;

    padding: 11px 20px;

    background: var(--skytech-primary);
    color: var(--skytech-white);

    text-decoration: none;
    border-radius: 4px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s;
}

.footer-btn:hover {
    background: var(--skytech-white);
    color: var(--skytech-red-dark);
}


/* FOOTER CONTACT */

.footer-contact-item {
    margin-bottom: 17px;
}

.footer-contact-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--skytech-primary);
    font-size: 14px;
}

.footer-contact-item a,
.footer-contact-item span {
    color: #e3d5d5;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.6;
}

.footer-contact-item a:hover {
    color: var(--skytech-primary);
}


/* FOOTER BOTTOM */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom-wrapper {
    min-height: 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #d5c5c5;
    font-size: 13px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .top-bar-wrapper {
        padding: 8px 0;
    }

    .header-wrapper {
        min-height: 75px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .main-navigation {
        display: none;

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        background: var(--skytech-white);

        border-top: 2px solid var(--skytech-primary);

        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        display: block;
        width: 100%;
    }

    .main-navigation ul li {
        border-bottom: 1px solid var(--skytech-border);
    }

    .main-navigation ul li a {
        padding: 14px 20px;
    }

    .main-navigation ul li a:hover {
        background: var(--skytech-light);
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .loss-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    section {
        padding: 55px 0;
    }

    .container {
        width: 92%;
    }

    .top-bar-wrapper {
        flex-direction: column;
        justify-content: center;
        gap: 5px;

        text-align: center;
    }

    .welcome-text {
        font-size: 13px;
    }

    .top-contact {
        gap: 12px;
        font-size: 13px;
    }

    .site-logo img {
        width: 150px;
    }

    .hero-section {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-features {
        flex-direction: column;
        gap: 8px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .services-grid,
    .loss-grid,
    .why-grid,
    .process-grid,
    .safety-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-wrapper {
        gap: 25px;
    }

    .contact-info,
    .contact-form {
        padding: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 0;
    }

    .footer-bottom-wrapper {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 15px 0;
    }
}

/* =========================================
   SKYTECH ABOUT SECTION
========================================= */

.about-section {
    padding: 80px 0;
    background: #ffffff;
}


/* =========================================
   SECTION HEADING
========================================= */

.about-section .section-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.about-section .section-heading span {
    display: inline-block;
    margin-bottom: 10px;
    color: #e34b3f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-section .section-heading h2 {
    margin: 0 0 15px;
    color: #222222;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
}

.about-section .section-heading p {
    margin: 0;
    color: #666666;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================
   ABOUT CONTENT
========================================= */

.about-section .about-content {
    display: flex;
    align-items: stretch;
    gap: 45px;
}


/* =========================================
   LEFT ABOUT TEXT
========================================= */

.about-section .about-text {
    flex: 1;
    padding: 35px;
    background: #f8f9fa;
    border-left: 4px solid #e34b3f;
    border-radius: 8px;
}

.about-section .about-text h3 {
    margin: 0 0 20px;
    color: #222222;
    font-size: 25px;
    line-height: 1.4;
    font-weight: 700;
}

.about-section .about-text p {
    margin: 0 0 18px;
    color: #555555;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   RIGHT HIGHLIGHTS
========================================= */

.about-section .about-highlights {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}


/* =========================================
   HIGHLIGHT BOX
========================================= */

.about-section .about-highlight {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.about-section .about-highlight:hover {
    transform: translateY(-3px);
    border-color: #e34b3f;
    box-shadow: 0 8px 22px rgba(227, 75, 63, 0.12);
}


/* =========================================
   ICON
========================================= */

.about-section .about-icon {
    min-width: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e34b3f;
    color: #ffffff;
    border-radius: 50%;
    font-size: 20px;
}


/* =========================================
   HIGHLIGHT TEXT
========================================= */

.about-section .about-highlight h4 {
    margin: 0 0 5px;
    color: #222222;
    font-size: 17px;
    font-weight: 700;
}

.about-section .about-highlight p {
    margin: 0;
    color: #777777;
    font-size: 14px;
    line-height: 1.5;
}


/* =========================================
   READ MORE BUTTON
========================================= */

.about-section .about-btn {
    margin-top: 25px;
}

.about-section .about-btn .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #e34b3f;
    color: #ffffff;
    border: 1px solid #e34b3f;
    border-radius: 5px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-section .about-btn .btn-primary:hover {
    background: #c9362b;
    border-color: #c9362b;
    color: #ffffff;
}

.about-section .about-btn .btn-primary i {
    transition: transform 0.3s ease;
}

.about-section .about-btn .btn-primary:hover i {
    transform: translateX(4px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .about-section {
        padding: 65px 0;
    }

    .about-section .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-section .about-highlights {
        width: 100%;
    }

}


@media (max-width: 767px) {

    .about-section {
        padding: 50px 0;
    }

    .about-section .section-heading {
        margin-bottom: 35px;
    }

    .about-section .section-heading h2 {
        font-size: 28px;
    }

    .about-section .section-heading p {
        font-size: 15px;
    }

    .about-section .about-text {
        padding: 25px 20px;
    }

    .about-section .about-text h3 {
        font-size: 22px;
    }

    .about-section .about-text p {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-section .about-highlight {
        padding: 16px;
    }

}

.loss-icon img {
    width: 50px;
    height: 50px;
    display: block;
}

/* =========================================
   SKYTECH WHATSAPP CHAT WIDGET
========================================= */

.whatsapp-widget {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 99999;
}


/* =========================================
   FLOATING WHATSAPP BUTTON
========================================= */

.whatsapp-float {
    width: 60px;
    height: 60px;

    border: none;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #ffffff;

    font-size: 30px;

    cursor: pointer;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.20);

    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    color: #ffffff;
    transform: translateY(-4px);
}


/* =========================================
   CHAT BOX
========================================= */

.whatsapp-chat-box {
    position: absolute;

    right: 0;
    bottom: 75px;

    width: 350px;
    max-width: calc(100vw - 30px);

    background: #ffffff;

    border-radius: 14px;
    overflow: hidden;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.22);

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px) scale(0.97);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}


/* OPEN STATE */

.whatsapp-chat-box.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0) scale(1);
}


/* =========================================
   CHAT HEADER
========================================= */

.whatsapp-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 15px 16px;

    background: var(--skytech-dark);
    color: #ffffff;
}


.whatsapp-chat-user {
    display: flex;
    align-items: center;
    gap: 10px;
}


.whatsapp-chat-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #ffffff;

    border-radius: 50%;

    font-size: 21px;
}


.whatsapp-chat-user strong {
    display: block;

    font-size: 14px;
    line-height: 1.3;
}


.whatsapp-chat-user small {
    display: block;

    margin-top: 3px;

    color: #d9d9d9;

    font-size: 11px;
}


.whatsapp-close {
    width: 32px;
    height: 32px;

    border: none;
    background: transparent;

    color: #ffffff;

    font-size: 17px;

    cursor: pointer;

    border-radius: 50%;

    transition: 0.2s;
}


.whatsapp-close:hover {
    background: rgba(255, 255, 255, 0.12);
}


/* =========================================
   CHAT BODY
========================================= */

.whatsapp-chat-body {
    padding: 18px;

    background: #f7f7f7;

    max-height: 350px;
    overflow-y: auto;
}


/* MESSAGE */

.whatsapp-message {
    position: relative;

    width: fit-content;
    max-width: 90%;

    padding: 12px 14px 22px;

    background: #ffffff;

    border-radius: 4px 12px 12px 12px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}


.whatsapp-message-title {
    margin-bottom: 5px;

    color: var(--skytech-primary);

    font-size: 12px;
    font-weight: 700;
}


.whatsapp-message p {
    margin: 0;

    color: #333333;

    font-size: 13px;
    line-height: 1.6;
}


.whatsapp-time {
    position: absolute;

    right: 10px;
    bottom: 5px;

    color: #999999;

    font-size: 9px;
}


/* =========================================
   QUICK OPTIONS
========================================= */

.whatsapp-quick-options {
    margin-top: 15px;

    display: flex;
    flex-direction: column;

    gap: 8px;
}


.whatsapp-quick-btn {
    width: 100%;

    padding: 10px 12px;

    display: flex;
    align-items: center;

    gap: 9px;

    background: #ffffff;

    border: 1px solid #e7e7e7;

    border-radius: 7px;

    color: #333333;

    font-size: 12px;
    text-align: left;

    cursor: pointer;

    transition: all 0.2s ease;
}


.whatsapp-quick-btn i {
    color: var(--skytech-primary);

    font-size: 15px;
}


.whatsapp-quick-btn:hover {
    border-color: var(--skytech-primary);

    color: var(--skytech-primary);

    background: var(--skytech-red-soft);
}


/* =========================================
   CHAT FOOTER
========================================= */

.whatsapp-chat-footer {
    display: flex;
    align-items: center;

    gap: 8px;

    padding: 10px;

    background: #ffffff;

    border-top: 1px solid #eeeeee;
}


.whatsapp-chat-footer input {
    flex: 1;

    min-width: 0;

    height: 42px;

    padding: 0 13px;

    border: 1px solid #dddddd;

    border-radius: 22px;

    outline: none;

    color: #333333;

    font-size: 13px;

    background: #fafafa;
}


.whatsapp-chat-footer input:focus {
    border-color: var(--skytech-primary);

    background: #ffffff;
}


.whatsapp-chat-footer button {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    border: none;

    border-radius: 50%;

    background: #25D366;
    color: #ffffff;

    font-size: 17px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.2s;
}


.whatsapp-chat-footer button:hover {
    background: #1ebe5d;

    transform: scale(1.05);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .whatsapp-widget {
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;

        font-size: 27px;
    }

    .whatsapp-chat-box {
        width: 330px;
        max-width: calc(100vw - 30px);

        right: 0;
        bottom: 68px;
    }

}

.hero-buttons .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-buttons .btn-secondary i {
    font-size: 15px;
}