@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;0,14..32,900;1,14..32,400&family=Plus+Jakarta+Sans:wght@700;800&display=swap');

:root {
    --sunex-red: #d21e2b;
    --sunex-red-light: #e8404c;
    --sunex-dark: #111827;
    --sunex-white: #ffffff;
    --transition: all 0.3s ease-in-out;

    /* Typography Scale */
    --text-xs: 11px;
    --text-sm: 13px;
    --text-base: 15px;
    --text-md: 17px;
    --text-lg: 20px;
    --text-xl: 24px;
    --text-2xl: 32px;
    --text-3xl: 42px;
    --text-4xl: 56px;
    --text-hero: clamp(2.4rem, 5.5vw, 3.2rem);

    /* Spacing */
    --section-pad: 120px 0;
    --card-radius: 24px;
    --card-radius-sm: 16px;

    /* Colors */
    --surface: #f8f9fb;
    --surface-card: #ffffff;
    --border: rgba(0, 0, 0, 0.07);
    --text-primary: #0a0a0f;
    --text-secondary: #4a5568;
    --text-muted: #718096;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--surface);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "kern" 1, "liga" 1;
}

/* ─── Typography Resets ─── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 0;
}

h1 {
    font-size: var(--text-4xl);
}

h2 {
    font-size: var(--text-3xl);
}

h3 {
    font-size: var(--text-xl);
    letter-spacing: -0.02em;
}

h4 {
    font-size: var(--text-lg);
    letter-spacing: -0.01em;
}

h5 {
    font-size: var(--text-md);
    font-weight: 700;
}

h6 {
    font-size: var(--text-base);
    font-weight: 700;
}

p {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-base);
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 0;
}

a {
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

/* ─── Global Utilities ─── */
.navbar-logo {
    max-height: 50px;
    border-radius: 5px;
}

.hero-badge-red {
    border-color: var(--sunex-red) !important;
    color: var(--sunex-red) !important;
}

.icon-rotate-45 {
    transform: rotate(-45deg);
    display: inline-block;
}

.color-red {
    color: var(--sunex-red);
}

.fs-xs {
    font-size: 10px;
}

/* ─── Section Badge ─── */
.hero-badge {
    background: #f0f1f5;
    color: var(--text-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--sunex-red);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--sunex-red);
    animation: pulseDot 2s infinite;
    flex-shrink: 0;
}

@keyframes pulseDot {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ─── Navbar ─── */
.navbar-wrapper {
    position: fixed;
    top: 25px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-wrapper.scrolled {
    top: 0;
}

.navbar {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    width: 95%;
    max-width: 1320px;
    padding: 12px 28px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.navbar-wrapper.scrolled .navbar {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98) !important;
}

.navbar .container-fluid {
    display: flex;
    align-items: center;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: #000 !important;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 !important;
    margin-right: 0;
    flex-shrink: 0;
}

.navbar-brand img {
    max-height: 52px;
    border-radius: 0;
    background: transparent;
    display: block;
}

.brand-name {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    text-transform: none;
    letter-spacing: -0.04em;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.brand-name::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--sunex-red);
    margin-left: 3px;
    border-radius: 0;
    /* Pure square for the engineering look */
    margin-top: 15px;
}

@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end;
    }

    .navbar-nav {
        display: flex;
        align-items: center;
        margin-right: 24px;
        gap: 4px;
    }
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
    .navbar-wrapper {
        top: 0;
    }

    .navbar-collapse {
        background: white;
        margin-top: 15px;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-nav {
        margin-right: 0;
        gap: 8px;
        margin-bottom: 20px;
    }

    .nav-link {
        padding: 12px 16px !important;
    }

    .btn-contact {
        width: 100%;
        justify-content: center;
    }

    .brand-name {
        font-size: 22px;
    }

    .navbar-logo {
        max-height: 42px;
    }
}

.nav-link {
    color: #333 !important;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: 0.25s;
    padding: 8px 14px !important;
    border-radius: 8px;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--sunex-red) !important;
    background: rgba(210, 30, 43, 0.05);
}

.btn-contact {
    background: var(--sunex-red);
    color: white !important;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border-radius: 10px;
    padding: 12px 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    transition: 0.3s;
    text-decoration: none !important;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.btn-contact:hover {
    background: var(--sunex-dark);
    transform: translateY(-1px);
}

/* ─── Dropdown ─── */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    min-width: 260px;
}

.dropdown-item {
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #0f172a;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(210, 30, 43, 0.05);
    color: var(--sunex-red);
    transform: translateX(4px);
}

.nav-link.dropdown-toggle::after {
    display: none;
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 150px 0 100px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.4) 55%, rgba(0, 0, 0, 0.15) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 780px;
}

.hero .hero-badge {
    background: rgba(8, 12, 24, 0.45);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero .hero-badge::before {
    background: var(--sunex-red);
    box-shadow: 0 0 10px var(--sunex-red);
}

.hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: var(--text-hero);
    font-weight: 500;
    color: white;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 0;
    padding-bottom: 36px;
    position: relative;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), transparent);
}

.hero-subtitle {
    font-size: var(--text-md);
    color: rgba(255, 255, 255, 0.72);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: -0.01em;
    max-width: 520px;
    margin-top: 28px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 44px;
    flex-wrap: wrap;
}

.btn-hero {
    background: var(--sunex-red);
    color: white;
    padding: 15px 28px;
    border-radius: 11px;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(210, 30, 43, 0.35);
}

.btn-hero:hover {
    background: white;
    color: var(--sunex-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.btn-hero i {
    transform: rotate(-45deg);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero:hover i {
    transform: rotate(0deg);
}

.btn-hero-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px 24px;
    border-radius: 11px;
    font-weight: 600;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    letter-spacing: -0.01em;
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

/* ─── Trust Card ─── */
.trust-card {
    background: rgba(8, 12, 24, 0.65);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-radius: 32px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: row !important;
    align-items: stretch;
    max-width: 520px;
    margin-left: auto;
    box-shadow: 0 32px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.trust-card-img {
    width: 220px;
    min-height: 260px;
    border-radius: 25px;
    object-fit: cover;
    flex-shrink: 0;
}

.trust-card-content {
    flex: 1;
    padding: 22px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-card-icon {
    width: 42px;
    height: 42px;
    background: var(--sunex-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 16px;
    box-shadow: 0 6px 18px rgba(210, 30, 43, 0.35);
}

.trust-card-content h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: white;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    line-height: 1.3;
}

.trust-card-content p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.trust-badge {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.08em;
}

.trust-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--sunex-red);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ─── About Section ─── */
.about-section {
    padding: var(--section-pad);
    background: white;
}

.about-images-collage {
    display: flex;
    gap: 20px;
    position: relative;
    padding-bottom: 40px;
    align-items: flex-start;
}

.about-collage-left {
    position: relative;
    width: 62%;
}

.about-img-main-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.about-img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about-collage-right {
    width: 38%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-img-small-wrapper {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    display: block;
}

.about-img-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img-main-wrapper,
.about-img-2-wrapper,
.about-img-3-wrapper {
    position: relative;
    overflow: hidden;
    background: #000;
}

.shiny-effect::before,
.shiny-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
}

.shiny-effect::before {
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.shiny-effect::after {
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.shiny-effect:hover::before {
    opacity: 1;
    transform: translate(-100%, -100%);
}

.shiny-effect:hover::after {
    opacity: 1;
    transform: translate(100%, 100%);
}

.about-images-collage img {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.about-images-collage .shiny-effect:hover img {
    transform: scale(1.04);
}

.contact-us-circle {
    position: absolute;
    bottom: -28px;
    left: 18px;
    width: 120px;
    height: 120px;
    background: var(--sunex-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 8px 28px rgba(210, 30, 43, 0.4);
    border: 5px solid #fff;
}

.rotating-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 10s linear infinite;
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-content h2 {
    line-height: 1.15;
    color: var(--text-primary);
    letter-spacing: -0.035em;
}

.about-content>p:first-of-type {
    font-size: var(--text-md);
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.about-content p {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.btn-go-solar {
    background: var(--sunex-red);
    color: white !important;
    padding: 15px 28px;
    border-radius: 11px;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(210, 30, 43, 0.25);
}

.btn-go-solar:hover {
    background: var(--sunex-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
    color: white !important;
}

.btn-go-solar i {
    transform: rotate(-45deg);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-go-solar:hover i {
    transform: rotate(0deg);
}

/* ─── Services Section ─── */
.services-section {
    position: relative;
    background: #edf1f7;
    padding: var(--section-pad);
    overflow: hidden;
}

.section-bg-overlay {
    position: absolute;
    inset: 0;
    background-size: auto;
    background-position: center;
    background-repeat: repeat;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.service-card {
    position: relative;
    height: 400px;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    margin-bottom: 28px;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    background: #000;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.service-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

/* Refined gradient for text legibility */
.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.65) 30%,
            rgba(0, 0, 0, 0.2) 65%,
            rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    transition: background 0.45s ease;
}

.service-card:hover .service-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.97) 0%,
            rgba(0, 0, 0, 0.7) 40%,
            rgba(0, 0, 0, 0.3) 70%,
            rgba(0, 0, 0, 0.05) 100%);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 28px 28px;
    z-index: 3;
}

.service-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: white;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    line-height: 1.3;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.service-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.service-card:hover .service-content p {
    opacity: 1;
    transform: translateY(0);
}

.service-tag {
    display: inline-block;
    background: var(--sunex-red);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: none;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}

/* ─── Services Footer ─── */
.services-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 18px 28px;
    border-radius: 60px;
    width: fit-content;
    margin: 0 auto;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.footer-profile-group {
    display: flex;
    align-items: center;
    position: relative;
}

.author-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.footer-phone-icon {
    width: 32px;
    height: 32px;
    background: var(--sunex-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-left: -12px;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(210, 30, 43, 0.25);
    z-index: 2;
}

.footer-cta-text {
    font-size: 14.5px;
    color: var(--text-primary);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.footer-cta-text a {
    color: var(--sunex-red);
    font-weight: 700;
    text-decoration: none;
}

.footer-cta-text a:hover {
    text-decoration: underline;
}

.arrow-link i {
    transform: rotate(-45deg);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.arrow-link:hover i {
    transform: rotate(0deg);
}

/* ─── Why Choose Us ─── */
.why-choose-section {
    background: var(--surface);
    padding: var(--section-pad);
}

.why-choose-img-container-fixed {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 24px;
}

.why-choose-img-container-fixed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.different-point {
    background: white;
    border-radius: 14px;
    padding: 14px 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
    /* cursor: pointer; */
}

.different-point:hover {
    background: var(--sunex-red);
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(210, 30, 43, 0.18);
    border-color: transparent;
}

.dp-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(210, 30, 43, 0.08);
    color: var(--sunex-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.35s ease;
}

.different-point:hover .dp-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.dp-text h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 2px;
    color: var(--text-primary);
    transition: color 0.35s ease;
    line-height: 1.3;
}

.dp-text p {
    font-size: 13px;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.5;
    transition: color 0.35s ease;
}

.different-point:hover .dp-text h3,
.different-point:hover .dp-text p {
    color: white !important;
}

/* ─── Expertise Section ─── */
.expertise-section {
    position: relative;
    padding: var(--section-pad);
    background-color: white;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(226, 232, 240, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(226, 232, 240, 0.4) 1px, transparent 1px);
    background-size: 48px 48px;
}

.expertise-section::before,
.expertise-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(160px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.1;
}

.expertise-section::before {
    background: var(--sunex-red);
    top: -200px;
    right: -100px;
}

.expertise-section::after {
    background: #3b82f6;
    bottom: -200px;
    left: -100px;
}

.expertise-section .container-fluid {
    position: relative;
    z-index: 1;
}

.expertise-card {
    position: relative;
    height: 370px;
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.expertise-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.expertise-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-card:hover .expertise-img {
    transform: scale(1.08);
}

.expertise-glass-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    padding: 22px;
    z-index: 5;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.expertise-desc {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.expertise-card:hover .expertise-desc {
    max-height: 100px;
    opacity: 1;
    margin-top: 12px;
}

.expertise-card:hover .expertise-glass-box {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-6px);
}

/* ─── Industries Section ─── */
.industries-section {
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
    padding: var(--section-pad);
}

.industry-card {
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border-radius: 16px;
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(210, 30, 43, 0.15);
}

.industry-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(210, 30, 43, 0.05);
    color: var(--sunex-red);
    border-radius: 18px;
    font-size: 26px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(210, 30, 43, 0.1);
    border-radius: 22px;
    opacity: 0;
    transition: all 0.4s ease;
}

.industry-card:hover .industry-icon {
    background: var(--sunex-red);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.industry-card:hover .industry-icon::after {
    opacity: 1;
    inset: -8px;
}

.industry-title {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.4;
    margin-top: 10px;
}

/* ─── News Section ─── */
.news-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    border-radius: 12px;
}

.news-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(210, 30, 43, 0.4);
    transform: translateY(-2px);
}

.news-card h6 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.5;
    color: #e2e8f0 !important;
}

.news-card:hover h6 {
    color: #ffffff !important;
}

.news-scroll-box {
    height: 300px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.news-scroll-content {
    animation: scrollVertical 22s linear infinite;
}

.news-scroll-container:hover .news-scroll-content {
    animation-play-state: paused;
}

@keyframes scrollVertical {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.featured-news-card:hover .hover-zoom {
    transform: scale(1.04) !important;
}

/* ─── CTA Banner ─── */
.cta-banner-section {
    min-height: 260px;
    padding: var(--section-pad);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* ─── Footer ─── */
.footer {
    background: #111827;
    padding: 80px 0 0;
    color: #d1d5db;
    border-top: 1px solid #1f2937;
}

.footer-logo {
    max-height: 55px;
    display: inline-block;
    margin-bottom: 0;
}

.footer-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #9ca3af;
    margin-bottom: 32px;
}

.footer h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #f9fafb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 14px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--sunex-red);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    color: #9ca3af;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.01em;
}

.footer-links a:hover {
    color: var(--sunex-red);
    padding-left: 4px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #1f2937;
    color: #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
    font-size: 15px;
}

.social-icon:hover {
    background: var(--sunex-red);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    background: #0a0f1a;
    padding: 22px 0;
    margin-top: 72px;
    border-top: 1px solid #1f2937;
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    margin: 0;
    font-size: 13px;
    color: #9ca3af;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 28px;
}

.footer-bottom-links a {
    font-family: 'Inter', sans-serif;
    color: #9ca3af;
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--sunex-red);
}

/* ─── Back to Top ─── */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: var(--sunex-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    z-index: 1000;
    transition: all 0.35s ease;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 20px rgba(210, 30, 43, 0.35);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--sunex-dark);
    color: white;
    transform: translateY(-4px);
}

/* ─── Preloader ─── */
#preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.loader-logo {
    max-height: 90px;
    animation: pulseLogo 1.8s ease-in-out infinite;
}

.loader-line {
    width: 140px;
    height: 3px;
    background: #f0f0f0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.loader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--sunex-red);
    animation: loadingLine 1.4s infinite linear;
    border-radius: 10px;
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.06);
        opacity: 0.8;
    }
}

@keyframes loadingLine {
    0% {
        left: -100%;
    }

    50% {
        left: 0%;
    }

    100% {
        left: 100%;
    }
}

/* ─── Section Headers ─── */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    line-height: 1.15;
    margin-top: 8px;
}

.section-desc {
    font-size: var(--text-md);
    color: var(--text-muted);
    max-width: 560px;
    margin: 14px auto 0;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

/* ─── AOS Animations ─── */
[data-aos] {
    opacity: 0;
    transition-duration: 400ms;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-down"] {
    transform: translateY(-40px);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="zoom-in"] {
    transform: scale(0.92);
}

[data-aos-delay="50"] {
    transition-delay: 50ms;
}

[data-aos-delay="100"] {
    transition-delay: 100ms;
}

[data-aos-delay="150"] {
    transition-delay: 150ms;
}

[data-aos-delay="200"] {
    transition-delay: 200ms;
}

[data-aos-delay="250"] {
    transition-delay: 250ms;
}

[data-aos-delay="300"] {
    transition-delay: 300ms;
}

[data-aos-delay="350"] {
    transition-delay: 350ms;
}

[data-aos-delay="400"] {
    transition-delay: 400ms;
}

[data-aos-delay="450"] {
    transition-delay: 450ms;
}

[data-aos-delay="500"] {
    transition-delay: 500ms;
}

[data-aos-delay="600"] {
    transition-delay: 600ms;
}

/* ─── Responsive ─── */
@media (max-width: 991px) {
    .hero {
        padding: 120px 0 80px;
        text-align: center;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.2;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .trust-card {
        margin: 0 auto;
        max-width: 450px;
        text-align: left;
    }

    .navbar-wrapper {
        top: 10px;
    }

    .navbar {
        width: 98%;
    }

    .trust-card {
        max-width: 100%;
        border-radius: 24px;
    }

    .trust-card-img {
        width: 150px;
        min-height: 180px;
        border-radius: 18px;
    }

    .trust-card-content {
        padding: 16px 18px;
    }

    .trust-card-content h4 {
        font-size: 15px;
    }

    .about-images-collage {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .about-collage-left,
    .about-collage-right {
        width: 100%;
    }

    .about-img-main {
        height: 350px;
    }

    .about-img-small-wrapper {
        height: 180px;
    }

    .about-img-small {
        height: 100%;
    }

    .why-choose-img-container-fixed {
        position: relative;
        height: 350px;
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 60px 0;
    }

    .services-footer {
        flex-direction: column;
        text-align: center;
        border-radius: 24px;
        padding: 22px;
    }

    .about-img-main {
        height: 380px;
    }

    .hero-subtitle {
        font-size: var(--text-base);
    }
}

@media (max-width: 480px) {
    .trust-card-img {
        width: 110px;
        min-height: 150px;
    }

    .trust-card-content {
        padding: 12px 14px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .hero-badge {
        font-size: 10px;
        padding: 6px 12px;
    }

    .btn-hero {
        padding: 12px 20px;
        font-size: 14px;
    }
}



/* ─── Page Banner ─── */
.page-banner {
    position: relative;
    padding: 160px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-transform: capitalize;
    letter-spacing: -0.03em;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: 600;
    font-size: 16px;
}

.breadcrumb-list li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-list li a:hover {
    color: var(--sunex-red);
}

.breadcrumb-list li.active {
    color: white;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

@media (max-width: 768px) {
    .page-banner {
        padding: 120px 0 80px;
        min-height: 350px;
    }
}


/* ─── Approach Section ─── */
.approach-section {
    padding: var(--section-pad);
    background: #f8f9fb;
    position: relative;
    overflow: hidden;
}

/* Background Design Elements */
.approach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(var(--sunex-red) 1px, transparent 1px),
        radial-gradient(var(--sunex-red) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.04;
    z-index: 0;
}

.bg-shape-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(210, 30, 43, 0.03);
    border-radius: 50%;
    filter: blur(80px);
    animation: floatShape 15s infinite alternate ease-in-out;
}

.bg-shape-2 {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: rgba(17, 24, 39, 0.02);
    border-radius: 50%;
    filter: blur(100px);
    animation: floatShape 20s infinite alternate-reverse ease-in-out;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

.approach-section .container {
    position: relative;
    z-index: 1;
}

.approach-img-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    height: 100%;
    min-height: 550px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.approach-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.approach-img-wrapper:hover .approach-img {
    transform: scale(1.08);
}

.mvv-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.mvv-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--sunex-red);
    transition: height 0.4s ease;
}

.mvv-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(210, 30, 43, 0.1);
}

.mvv-card:hover::after {
    height: 100%;
}

.mvv-icon {
    width: 65px;
    height: 65px;
    background: rgba(210, 30, 43, 0.05);
    color: var(--sunex-red);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.mvv-card:hover .mvv-icon {
    background: var(--sunex-red);
    color: #ffffff;
    transform: rotate(10deg);
}

.mvv-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--sunex-dark);
}

.mvv-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

.approach-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #f1f5f9;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--sunex-dark);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.approach-pill:hover {
    background: #ffffff;
    color: var(--sunex-red);
    border-color: var(--sunex-red);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(210, 30, 43, 0.1);
}

.approach-pill i {
    color: var(--sunex-red);
}

@media (max-width: 991px) {

    .approach-img-wrapper {
        min-height: 350px;
        margin-top: 40px;
    }
}

/* done 1  */

/* about page style  */
/* Add these to your existing style.css if missing */

@media (max-width: 991px) {
    .about-images-collage {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .about-collage-left,
    .about-collage-right {
        width: 100%;
    }

    .mvv-card[style*="transform: translateX(20%)"] {
        transform: translateX(0) !important;
    }

    .approach-img-wrapper {
        min-height: 350px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .contact-us-circle {
        width: 100px;
        height: 100px;
        bottom: -20px;
        left: 10px;
    }

    .circle-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .rotating-text text {
        font-size: 7px;
    }
}

/* ========================================
   PROJECTS PAGE STYLES
   ======================================== */

/* Capabilities Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.capability-item {
    border: 1.5px solid #4a5568;
    border-radius: 12px;
    padding: 28px 16px;
    transition: all 0.3s ease;
    height: 100%;
}

.capability-item i {
    font-size: 36px;
}

.capability-item span {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.4;
    font-weight: 500;
}

.capability-item:hover {
    border-color: #d21e2b !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(210, 30, 43, 0.12);
}

.capability-item:hover span {
    color: #d21e2b !important;
}

/* Solar Feature Card */
.solar-feature-card {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.solar-feature-card .feature-icon {
    width: 50px;
    height: 50px;
    background: var(--sunex-red);
    color: white;
    font-size: 20px;
}

.solar-feature-card h4 {
    color: var(--sunex-dark);
    font-size: 20px;
}

.solar-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(210, 30, 43, 0.08) !important;
    border-color: var(--sunex-red) !important;
}

/* Telecom Structure Display */
.telecom-structure-display {
    min-height: 400px;
}

.structure-bg-circle {
    width: 350px;
    height: 350px;
    background: #f1f5f9;
}

.telecom-structure-img {
    width: 510px;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 30px rgba(17, 24, 39, 0.2));
}

/* Communication Items */
.communication-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.comm-item {
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.comm-item i {
    font-size: 16px;
}

.comm-item span {
    font-size: 14px;
    color: #4a5568;
}

.comm-item:hover {
    transform: translateX(8px);
}

.comm-item:hover span {
    color: #d21e2b !important;
}

/* Client Image */
.client-image {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
    border-radius: 12px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}

/* Reliability Card */
.reliability-card {
    background: #f1f5f9;
    border-radius: 12px;
    border-left: 4px solid #d21e2b;
    border-right: 4px solid #d21e2b;
    transition: all 0.3s ease;
}

.reliability-card p {
    color: var(--sunex-dark);
    font-size: 14px;
}

.reliability-card:hover {
    background: #e8edf3 !important;
}

/* Responsive */
@media (max-width: 992px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .telecom-structure-img {
        width: 100%;
        max-width: 400px;
    }

    .structure-bg-circle {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 576px) {
    .capabilities-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Client Interaction Section */
.client-interaction-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}
.interaction-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.interaction-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: var(--sunex-red);
    z-index: 1;
}
.interaction-step {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.interaction-box {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: 2px solid var(--sunex-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}
.interaction-box i {
    font-size: 24px;
    color: var(--sunex-dark);
    transition: all 0.3s ease;
}
.interaction-step:hover .interaction-box {
    background: var(--sunex-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(210, 30, 43, 0.2);
}
.interaction-step:hover .interaction-box i {
    color: #ffffff;
}
.interaction-title {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--sunex-dark);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}
.interaction-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: left;
    display: inline-block;
    max-width: 260px;
}
.interaction-list li {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}
.interaction-list li::before {
    content: '•';
    color: var(--sunex-red);
    font-weight: 900;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: -2px;
}
@media (max-width: 991px) {
    .interaction-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .interaction-timeline::before {
        display: none;
    }
}
@media (max-width: 576px) {
    .interaction-timeline {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .interaction-timeline::before {
        display: none;
    }
}

/* Pagination Styling */
.pagination .page-item .page-link {
    color: var(--sunex-dark);
    border-color: #e2e8f0;
    padding: 6px 12px;
    font-weight: 500;
    transition: all 0.2s ease;
}
.pagination .page-item.active .page-link {
    background-color: var(--sunex-red) !important;
    border-color: var(--sunex-red) !important;
    color: #ffffff !important;
}
.pagination .page-item.disabled .page-link {
    color: #cbd5e1;
    pointer-events: none;
    background-color: #f8fafc;
}
.pagination .page-link:hover:not(.active) {
    background-color: rgba(210, 30, 43, 0.05);
    color: var(--sunex-red);
    border-color: var(--sunex-red);
}

/* ─── Projects Page Portfolio Styling ─── */
.projects-portfolio-section {
    background: #f8fafc;
    position: relative;
}
.project-toggle-container {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    padding: 5px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.project-toggle-btn {
    border: none;
    background: transparent;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.01em;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}
.project-toggle-btn.active {
    background: var(--sunex-red);
    color: #fff;
    box-shadow: 0 6px 15px rgba(210, 30, 43, 0.2);
}
.project-toggle-btn:hover:not(.active) {
    color: var(--sunex-red);
    background: rgba(210, 30, 43, 0.05);
}

/* Table styling */
.custom-projects-table {
    border-collapse: collapse !important;
    width: 100%;
}
.custom-projects-table th,
.custom-projects-table td {
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    padding: 16px 20px !important;
}
.custom-projects-table thead th {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.12) !important;
}
.custom-projects-table tbody tr {
    transition: background-color 0.25s ease;
}
.custom-projects-table tbody tr:hover {
    background-color: rgba(210, 30, 43, 0.02) !important;
}
.custom-projects-table tbody td {
    font-size: 14px;
}
.badge-category-telecom {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 6px 12px;
    border-radius: 30px;
    font-weight: 600;
}
.badge-category-solar {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    padding: 6px 12px;
    border-radius: 30px;
    font-weight: 600;
}
.badge-category-civil {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 6px 12px;
    border-radius: 30px;
    font-weight: 600;
}
.badge-category-elec {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
    padding: 6px 12px;
    border-radius: 30px;
    font-weight: 600;
}
.badge-status-completed {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

/* Masonry Gallery styling */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}
@media(max-width: 991px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 575px) {
    .masonry-grid {
        grid-template-columns: 1fr;
    }
}
.masonry-item {
    display: block;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #fff;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}
.masonry-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.masonry-content {
    width: 100%;
    position: relative;
}
.masonry-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.masonry-item:hover img {
    transform: scale(1.05);
}
.masonry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.95) 0%, rgba(17, 24, 39, 0.5) 70%, transparent 100%);
    padding: 24px 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}
.masonry-item:hover .masonry-overlay {
    opacity: 1;
}
.masonry-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}
.masonry-item:hover .masonry-title {
    transform: translateY(0);
}
.masonry-category {
    color: var(--sunex-red-light);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 6px;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}
.masonry-item:hover .masonry-category {
    transform: translateY(0);
}

/* Lightbox Modal styling */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 15, 23, 0.96);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.lightbox-modal.active {
    display: flex;
    opacity: 1;
}
.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}
.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    object-fit: contain;
}
.lightbox-caption {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.lightbox-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}
.lightbox-close:hover {
    background: var(--sunex-red);
    color: #fff;
    border-color: var(--sunex-red);
    transform: rotate(90deg);
}

/* Switch Fade animation */
.fade-in-section {
    animation: fadeIn 0.4s ease-out forwards;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Project Real-time Search Box Style */
.project-search-box {
    max-width: 320px;
    width: 100%;
    position: relative;
}
.project-search-input {
    width: 100%;
    padding: 10px 16px 10px 42px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.project-search-input:focus {
    outline: none;
    border-color: var(--sunex-red);
    box-shadow: 0 4px 20px rgba(210, 30, 43, 0.08), 0 0 0 3px rgba(210, 30, 43, 0.05);
    background: #ffffff;
}
.project-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    opacity: 0.6;
    font-size: 14px;
    pointer-events: none;
    transition: color 0.3s ease;
}
.project-search-input:focus + .project-search-icon {
    color: var(--sunex-red);
    opacity: 1;
}