/* =====================================================
   COMSERV PNG LTD
   MAIN WEBSITE STYLE
===================================================== */


/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: 'Poppins', sans-serif;

    background: #050505;

    color: #ffffff;

    line-height: 1.6;

}


/* =====================================================
   COLOURS
===================================================== */

:root {

    --green: #00a83b;

    --green-light: #00d84f;

    --black: #050505;

    --dark: #0b0f0c;

    --dark2: #111714;

    --white: #ffffff;

    --grey: #b9b9b9;

}


/* =====================================================
   HEADER
===================================================== */

.main-header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 90px;

    background: rgba(0, 0, 0, 0.96);

    border-bottom: 2px solid var(--green);

    z-index: 9999;

}


.header-container {

    max-width: 1400px;

    height: 100%;

    margin: auto;

    padding: 0 40px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* LOGO */

.logo img {

    width: 190px;

    max-height: 70px;

    object-fit: contain;

    display: block;

}


/* =====================================================
   NAVIGATION
===================================================== */

.navigation {

    display: flex;

    align-items: center;

    gap: 10px;

}


.navigation a {

    position: relative;

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;

    font-weight: 500;

    padding: 13px 20px;

    transition: 0.3s;

}


.navigation a::after {

    content: "";

    position: absolute;

    left: 20px;

    right: 20px;

    bottom: 3px;

    height: 3px;

    background: var(--green);

    transform: scaleX(0);

    transition: 0.3s;

}


.navigation a:hover {

    color: var(--green);

}


.navigation a:hover::after {

    transform: scaleX(1);

}


/* ACTIVE MENU */

.navigation a.active {

    color: var(--green);

}


.navigation a.active::after {

    transform: scaleX(1);

}


/* =====================================================
   MOBILE MENU
===================================================== */

.menu-toggle {

    display: none;

    background: var(--green);

    border: none;

    color: white;

    font-size: 22px;

    width: 45px;

    height: 45px;

    border-radius: 5px;

    cursor: pointer;

}


/* =====================================================
   HERO
===================================================== */

.hero {

    min-height: 850px;

    margin-top: 90px;

    position: relative;

    display: flex;

    align-items: center;

    background-image:
        url("../images/server-bg.jpg");

    background-size: cover;

    background-position: center;

    overflow: hidden;

}


/* DARK OVERLAY */

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.95),
            rgba(0,0,0,0.70),
            rgba(0,0,0,0.45)
        );

}


/* GREEN LIGHT EFFECT */

.hero::after {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    right: -200px;

    top: 100px;

    background: rgba(0, 168, 59, 0.18);

    filter: blur(100px);

    border-radius: 50%;

}


/* HERO CONTENT */

.hero-content {

    position: relative;

    z-index: 2;

    max-width: 1200px;

    width: 100%;

    margin: auto;

    padding: 100px 50px;

}


.hero-small-title {

    color: var(--green);

    font-size: 18px;

    font-weight: 600;

    letter-spacing: 3px;

    margin-bottom: 15px;

}


.hero h1 {

    font-size: clamp(42px, 6vw, 78px);

    line-height: 1.05;

    font-weight: 800;

    max-width: 900px;

}


.hero h1 span {

    display: block;

    color: var(--green);

}


.hero-description {

    max-width: 720px;

    font-size: 20px;

    color: #eeeeee;

    margin-top: 25px;

}


/* =====================================================
   SLOGAN
===================================================== */

.slogan {

    margin-top: 30px;

    border-left: 4px solid var(--green);

    padding-left: 20px;

}


.slogan span {

    color: var(--green);

    font-size: 27px;

    font-weight: 600;

    font-style: italic;

}


.slogan p {

    font-size: 18px;

    font-weight: 500;

    color: white;

}


/* =====================================================
   CONNECT SOLVE DELIVER
===================================================== */

.hero-values {

    display: flex;

    margin-top: 40px;

    gap: 0;

}


.value {

    min-width: 150px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    border-right: 1px solid rgba(255,255,255,0.4);

}


.value:last-child {

    border: none;

}


.value i {

    font-size: 35px;

    color: var(--green);

}


.value strong {

    font-size: 15px;

}


/* =====================================================
   BUTTON
===================================================== */

.hero-button {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 40px;

    padding: 15px 28px;

    background: var(--green);

    color: white;

    text-decoration: none;

    border-radius: 5px;

    font-weight: 600;

    transition: 0.3s;

}


.hero-button:hover {

    background: var(--green-light);

    transform: translateY(-3px);

}


/* =====================================================
   ABOUT
===================================================== */

.about-section {

    background: #ffffff;

    color: #111;

    padding: 100px 30px;

}


.section-container {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 70px;

    align-items: center;

}


.about-image {

    background: #ffffff;

    padding: 40px;

    border-radius: 10px;

    text-align: center;

}


.about-image img {

    width: 100%;

    max-width: 350px;

}


.section-label {

    color: var(--green);

    font-weight: 700;

    letter-spacing: 2px;

}


.about-content h2 {

    font-size: 45px;

    margin: 10px 0 20px;

}


.about-content p {

    margin-bottom: 20px;

    color: #555;

}


.about-highlight {

    margin-top: 12px;

    font-weight: 600;

}


.about-highlight i {

    color: var(--green);

    margin-right: 8px;

}


/* =====================================================
   SERVICES
===================================================== */

.services-section {

    background: #080b09;

    padding: 100px 30px;

}


.section-title {

    text-align: center;

    margin-bottom: 60px;

}


.section-title p {

    color: var(--green);

    font-weight: 700;

    letter-spacing: 3px;

}


.section-title h2 {

    font-size: 42px;

}


.section-title span {

    display: block;

    width: 100px;

    height: 3px;

    background: var(--green);

    margin: 15px auto;

}


.services-container {

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

}


.service-card {

    text-align: center;

    padding: 35px 22px;

    border-right:
        1px solid rgba(0,168,59,0.4);

    transition: 0.3s;

}


.service-card:last-child {

    border: none;

}


.service-card:hover {

    background: rgba(0,168,59,0.08);

    transform: translateY(-8px);

}


.service-card i {

    font-size: 48px;

    color: var(--green);

    margin-bottom: 25px;

}


.service-card h3 {

    font-size: 17px;

    margin-bottom: 15px;

}


.service-card p {

    color: #bbb;

    font-size: 14px;

}


/* =====================================================
   SOLUTIONS
===================================================== */

.solutions-section {

    min-height: 550px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            rgba(0,0,0,0.82),
            rgba(0,0,0,0.82)
        ),
        url("../images/server-bg.jpg");

    background-size: cover;

    background-position: center;

    padding: 80px 30px;

}


.solutions-content {

    max-width: 900px;

    margin: auto;

}


.solutions-content h2 {

    font-size: 50px;

    margin: 10px 0 20px;

}


.solutions-content > p {

    color: #ddd;

    font-size: 18px;

}


.solution-list {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-top: 35px;

}


.solution-list div {

    padding: 18px;

    background: rgba(0,168,59,0.1);

    border-left: 3px solid var(--green);

}


.solution-list i {

    color: var(--green);

    margin-right: 12px;

}


/* =====================================================
   CONTACT
===================================================== */

.contact-section {

    background: var(--green);

    padding: 25px 30px;

}


.contact-container {

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.contact-item {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    border-right:
        1px solid rgba(255,255,255,0.5);

}


.contact-item:last-child {

    border: none;

}


.contact-item i {

    font-size: 25px;

}


.contact-item small {

    display: block;

    font-weight: 700;

}


.contact-item a {

    color: white;

    text-decoration: none;

}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    background: #030403;

    padding-top: 70px;

}


.footer-container {

    max-width: 1250px;

    margin: auto;

    padding: 0 30px 60px;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1.3fr 1fr;

    gap: 50px;

}


.footer-logo img {

    width: 210px;

    margin-bottom: 15px;

}


.footer-logo p {

    color: #999;

    max-width: 300px;

}


.footer h3 {

    color: white;

    font-size: 16px;

    margin-bottom: 20px;

}


.footer-links a {

    display: block;

    color: #aaa;

    text-decoration: none;

    margin-bottom: 10px;

}


.footer-links a:hover {

    color: var(--green);

}


.footer-contact p {

    color: #aaa;

    margin-bottom: 12px;

}


.footer-contact i {

    color: var(--green);

    width: 25px;

}


.social-icons {

    display: flex;

    gap: 10px;

}


.social-icons a {

    width: 45px;

    height: 45px;

    display: flex;

    justify-content: center;

    align-items: center;

    border: 1px solid #333;

    color: white;

    text-decoration: none;

    border-radius: 50%;

    transition: 0.3s;

}


.social-icons a:hover {

    background: var(--green);

    border-color: var(--green);

}


.copyright {

    text-align: center;

    padding: 20px;

    border-top: 1px solid #222;

    color: #777;

    font-size: 13px;

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 1000px) {


    .menu-toggle {

        display: block;

    }


    .navigation {

        position: absolute;

        top: 90px;

        left: 0;

        width: 100%;

        background: #050505;

        display: none;

        flex-direction: column;

        padding: 20px;

        border-bottom:
            2px solid var(--green);

    }


    .navigation.show {

        display: flex;

    }


    .navigation a {

        width: 100%;

        text-align: center;

    }


    .hero {

        min-height: 750px;

    }


    .section-container {

        grid-template-columns: 1fr;

    }


    .services-container {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .service-card {

        border-bottom:
            1px solid rgba(0,168,59,0.3);

    }


    .contact-container {

        grid-template-columns:
            1fr 1fr;

        gap: 20px;

    }


    .footer-container {

        grid-template-columns:
            1fr 1fr;

    }

}


@media (max-width: 600px) {


    .header-container {

        padding: 0 20px;

    }


    .logo img {

        width: 150px;

    }


    .hero-content {

        padding: 70px 25px;

    }


    .hero h1 {

        font-size: 40px;

    }


    .hero-description {

        font-size: 16px;

    }


    .hero-values {

        flex-wrap: wrap;

    }


    .value {

        min-width: 100px;

    }


    .services-container {

        grid-template-columns: 1fr;

    }


    .solution-list {

        grid-template-columns: 1fr;

    }


    .solutions-content h2 {

        font-size: 35px;

    }


    .contact-container {

        grid-template-columns: 1fr;

    }


    .contact-item {

        border-right: none;

        border-bottom:
            1px solid rgba(255,255,255,0.3);

        padding: 15px;

    }


    .footer-container {

        grid-template-columns: 1fr;

    }

}
/* =========================================
   COMSERV ENQUIRIES
========================================= */

.enquiry {
    padding: 90px 20px;
    background: #050505;
    color: #ffffff;
}

.enquiry .container {
    max-width: 1000px;
    margin: auto;
}

.enquiry h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: #00b83f;
}

.enquiry .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
    color: #cccccc;
    line-height: 1.7;
}

/* FORM */

.enquiry form {
    background: #111111;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #222222;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* TWO COLUMNS */

.enquiry .row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.enquiry .row input {
    width: 50%;
}

/* INPUTS */

.enquiry input,
.enquiry select,
.enquiry textarea {
    width: 100%;
    padding: 16px;
    box-sizing: border-box;

    background: #1b1b1b;
    color: #ffffff;

    border: 1px solid #444444;
    border-radius: 6px;

    font-family: Arial, sans-serif;
    font-size: 15px;

    margin-bottom: 20px;
}

/* PLACEHOLDER */

.enquiry input::placeholder,
.enquiry textarea::placeholder {
    color: #999999;
}

/* FOCUS */

.enquiry input:focus,
.enquiry select:focus,
.enquiry textarea:focus {
    outline: none;
    border-color: #00b83f;
    box-shadow: 0 0 8px rgba(0,184,63,0.3);
}

/* SELECT */

.enquiry select {
    cursor: pointer;
}

/* TEXT AREA */

.enquiry textarea {
    resize: vertical;
}

/* BUTTON */

.enquiry button {
    display: block;
    margin: 10px auto 0;

    padding: 15px 40px;

    background: #00b83f;
    color: #ffffff;

    border: none;
    border-radius: 30px;

    font-size: 16px;
    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}

.enquiry button:hover {
    background: #008f31;
    transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 768px) {

    .enquiry {
        padding: 60px 15px;
    }

    .enquiry h2 {
        font-size: 32px;
    }

    .enquiry form {
        padding: 25px;
    }

    .enquiry .row {
        display: block;
    }

    .enquiry .row input {
        width: 100%;
    }

}
.contact-info a {
    color: white !important;
    text-decoration: none;
}

.contact-info a,
.contact-info a:visited,
.contact-info a:hover,
.contact-info a:active {
    color: white !important;
    text-decoration: none;
}

/* =====================================================
   COMSERV PNG SLIDESHOW
===================================================== */

.comserv-slider {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    background: #000000;
}

.comserv-slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
}

.comserv-slide.active {
    display: block;
}

.comserv-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* DARK OVERLAY */

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.85),
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.20)
        );
}


/* SLIDE TEXT */

.slide-text {
    position: absolute;

    top: 50%;
    left: 8%;

    transform: translateY(-50%);

    z-index: 5;

    max-width: 750px;

    color: #ffffff;
}

.slide-text p {
    color: #00b83f;

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 10px;
}

.slide-text h1 {
    font-size: 58px;

    line-height: 1.1;

    margin: 0;

    font-weight: 800;
}

.slide-text h1 span {
    display: block;

    color: #00b83f;
}

.slide-text h2 {
    font-size: 20px;

    font-weight: 400;

    color: #eeeeee;

    margin-top: 20px;
}


/* PREVIOUS / NEXT BUTTONS */

.slider-prev,
.slider-next {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 10;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    border: 2px solid #00b83f;

    background: rgba(0,0,0,0.65);

    color: #ffffff;

    font-size: 25px;

    cursor: pointer;
}

.slider-prev {
    left: 25px;
}

.slider-next {
    right: 25px;
}

.slider-prev:hover,
.slider-next:hover {
    background: #00b83f;
}


/* SLIDE DOTS */

.slider-dots {
    position: absolute;

    bottom: 25px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 10;
}

.slider-dot {
    display: inline-block;

    width: 12px;
    height: 12px;

    margin: 5px;

    border-radius: 50%;

    background: #ffffff;

    cursor: pointer;
}

.slider-dot.active {
    background: #00b83f;

    transform: scale(1.2);
}


/* MOBILE */

@media (max-width: 768px) {

    .comserv-slider {
        height: 500px;
    }

    .slide-text {
        left: 7%;
        right: 7%;
    }

    .slide-text h1 {
        font-size: 38px;
    }

    .slide-text h2 {
        font-size: 16px;
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;

        font-size: 18px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

}

/* =====================================================
   COMSERV INFORMATION BAR
===================================================== */

.comserv-info-bar {
    width: 100%;
    background: linear-gradient(
        90deg,
        #020705,
        #07120e,
        #020705
    );

    border-top: 2px solid #00b84a;
    border-bottom: 2px solid #00b84a;

    padding: 18px 5%;
    position: relative;
    overflow: hidden;
}


/* MAIN CONTAINER */

.info-container {
    max-width: 1300px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 35px;

    min-height: 90px;
}


/* =====================================================
   3D CUBE
===================================================== */

.cube-area {

    width: 75px;
    height: 75px;

    perspective: 600px;

    flex-shrink: 0;

}

.cube {

    width: 65px;
    height: 65px;

    position: relative;

    transform-style: preserve-3d;

    animation: comservCubeSpin 6s linear infinite;

}

.cube-face {

    position: absolute;

    width: 65px;
    height: 65px;

    display: flex;

    justify-content: center;
    align-items: center;

    background: linear-gradient(
        135deg,
        #00d85a,
        #006d2c
    );

    border: 1px solid #00ff88;

    color: #ffffff;

    font-size: 18px;

    font-weight: bold;

    box-shadow:
        0 0 15px rgba(0, 255, 100, 0.7);

}


/* CUBE SIDES */

.front {
    transform: translateZ(32.5px);
}

.back {
    transform: rotateY(180deg)
               translateZ(32.5px);
}

.right {
    transform: rotateY(90deg)
               translateZ(32.5px);
}

.left {
    transform: rotateY(-90deg)
               translateZ(32.5px);
}

.top {
    transform: rotateX(90deg)
               translateZ(32.5px);
}

.bottom {
    transform: rotateX(-90deg)
               translateZ(32.5px);
}


/* SPINNING ANIMATION */

@keyframes comservCubeSpin {

    0% {
        transform:
            rotateX(0deg)
            rotateY(0deg);
    }

    100% {
        transform:
            rotateX(360deg)
            rotateY(360deg);
    }

}


/* =====================================================
   INFORMATION TEXT
===================================================== */

.info-message {

    display: none;

    align-items: center;

    gap: 12px;

    color: #ffffff;

    font-size: 22px;

    font-weight: 600;

    opacity: 0;

    transform: translateX(40px);

}


.info-message.active-message {

    display: flex;

    animation: infoFadeSlide 0.7s ease forwards;

}


.info-icon {

    color: #00d85a;

    font-size: 28px;

}


.info-title {

    color: #e5e5e5;

}


.info-message strong {

    color: #00d85a;

    font-size: 30px;

    letter-spacing: 1px;

}


@keyframes infoFadeSlide {

    from {

        opacity: 0;

        transform: translateX(40px);

    }

    to {

        opacity: 1;

        transform: translateX(0);

    }

}


/* NEXT ARROW */

.info-next {

    color: #00d85a;

    font-size: 30px;

    animation: infoArrowMove 1s infinite;

}


@keyframes infoArrowMove {

    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0);
    }

}


/* =====================================================
   MOBILE VERSION
===================================================== */

@media screen and (max-width: 768px) {

    .info-container {

        flex-direction: column;

        gap: 15px;

        text-align: center;

    }

    .info-message {

        font-size: 18px;

        justify-content: center;

        flex-wrap: wrap;

    }

    .info-message strong {

        font-size: 24px;

    }

    .info-next {

        display: none;

    }

}

/* =====================================================
   COMSERV TECHNOLOGY / FLOATING ICONS
===================================================== */

.technology-section {
    position: relative;
    padding: 90px 5%;
    background:
        linear-gradient(
            135deg,
            #020806,
            #07150e,
            #020806
        );
    overflow: hidden;
}


/* BACKGROUND GLOW */

.technology-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    top: -200px;
    left: -150px;
    border-radius: 50%;
    background: rgba(0, 180, 74, 0.12);
    filter: blur(100px);
}


.technology-container {
    max-width: 1300px;
    margin: auto;
    position: relative;
    z-index: 2;
}


/* HEADING */

.technology-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-tag {
    color: #00d85a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
}

.technology-heading h2 {
    color: #ffffff;
    font-size: 46px;
    margin: 15px 0;
}

.technology-heading h2 span {
    color: #00d85a;
}

.technology-heading p {
    color: #b8c5be;
    font-size: 17px;
    line-height: 1.7;
}


/* TECHNOLOGY GRID */

.tech-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(220px, 1fr));

    gap: 25px;
}


/* FLOATING CARD */

.tech-card {
    position: relative;
    padding: 35px 25px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            rgba(15, 28, 22, 0.95),
            rgba(3, 10, 7, 0.95)
        );

    border: 1px solid
        rgba(0, 216, 90, 0.25);

    border-radius: 18px;

    overflow: hidden;

    transition:
        transform 0.4s ease,
        border 0.4s ease,
        box-shadow 0.4s ease;

    animation:
        techFloat 5s ease-in-out infinite;
}


/* DIFFERENT FLOAT SPEEDS */

.tech-card:nth-child(2) {
    animation-delay: 0.5s;
}

.tech-card:nth-child(3) {
    animation-delay: 1s;
}

.tech-card:nth-child(4) {
    animation-delay: 1.5s;
}

.tech-card:nth-child(5) {
    animation-delay: 2s;
}

.tech-card:nth-child(6) {
    animation-delay: 2.5s;
}

.tech-card:nth-child(7) {
    animation-delay: 3s;
}

.tech-card:nth-child(8) {
    animation-delay: 3.5s;
}


/* FLOAT ANIMATION */

@keyframes techFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


/* HOVER */

.tech-card:hover {

    transform:
        translateY(-15px)
        scale(1.03);

    border-color: #00d85a;

    box-shadow:
        0 15px 40px
        rgba(0, 216, 90, 0.25);

}


/* ICON */

.tech-icon {

    width: 78px;
    height: 78px;

    margin: 0 auto 22px;

    display: flex;

    justify-content: center;
    align-items: center;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #00b84a,
            #006b2c
        );

    color: #ffffff;

    font-size: 38px;

    box-shadow:
        0 0 25px
        rgba(0, 216, 90, 0.25);

    transition:
        transform 0.4s ease;

}


.tech-card:hover .tech-icon {

    transform:
        rotateY(360deg);

}


/* TEXT LOGOS */

.tech-logo-text {

    font-size: 28px;

    font-weight: 800;

    color: #ffffff;

}


/* TEXT */

.tech-card h3 {

    color: #ffffff;

    font-size: 20px;

    margin-bottom: 12px;

}

.tech-card p {

    color: #aeb8b2;

    font-size: 14px;

    line-height: 1.7;

}


/* MOBILE */

@media screen and (max-width: 768px) {

    .technology-section {
        padding: 65px 6%;
    }

    .technology-heading h2 {
        font-size: 32px;
    }

    .tech-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 15px;
    }

    .tech-card {
        padding: 25px 15px;
    }

    .tech-icon {
        width: 60px;
        height: 60px;

        font-size: 28px;
    }

    .tech-card h3 {
        font-size: 16px;
    }

    .tech-card p {
        font-size: 12px;
    }

}

/* ==========================================
   TECHNOLOGY LOGO IMAGES
========================================== */

.tech-icon img {
    width: 58px;
    height: 58px;

    object-fit: contain;

    display: block;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}


/* ROTATE / FLOAT EFFECT */

.tech-card:hover .tech-icon img {
    transform:
        rotateY(360deg)
        scale(1.12);
}


/* MOBILE SIZE */

@media screen and (max-width: 768px) {

    .tech-icon img {
        width: 42px;
        height: 42px;
    }

}

/* =========================================
   COMSERV 3D IMAGE CUBE
========================================= */

.cube-container {
    width: 280px;
    height: 280px;

    margin: 40px auto;

    perspective: 1000px;
}


/* THE CUBE */

.cube {
    width: 100%;
    height: 100%;

    position: relative;

    transform-style: preserve-3d;

    animation: smoothCubeRotate 16s linear infinite;
}


/* CUBE FACES */

.cube-face {
    position: absolute;

    width: 280px;
    height: 280px;

    overflow: hidden;

    background: #000;

    border: 2px solid rgba(0, 184, 74, 0.7);

    box-shadow:
        0 0 20px rgba(0, 184, 74, 0.35);

    backface-visibility: hidden;
}


/* IMAGES */

.cube-face img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* FRONT */

.front {
    transform: translateZ(140px);
}


/* RIGHT */

.right {
    transform: rotateY(90deg) translateZ(140px);
}


/* BACK */

.back {
    transform: rotateY(180deg) translateZ(140px);
}


/* LEFT */

.left {
    transform: rotateY(-90deg) translateZ(140px);
}


/* SMOOTH ROTATION */

@keyframes smoothCubeRotate {

    0% {
        transform: rotateY(0deg);
    }

    25% {
        transform: rotateY(90deg);
    }

    50% {
        transform: rotateY(180deg);
    }

    75% {
        transform: rotateY(270deg);
    }

    100% {
        transform: rotateY(360deg);
    }

}


/* PAUSE WHEN USER HOVERS */

.cube-container:hover .cube {
    animation-play-state: paused;
}


/* MOBILE */

@media screen and (max-width: 768px) {

    .cube-container {
        width: 200px;
        height: 200px;

        perspective: 800px;
    }

    .cube-face {
        width: 200px;
        height: 200px;
    }

    .front {
        transform: translateZ(100px);
    }

    .right {
        transform: rotateY(90deg) translateZ(100px);
    }

    .back {
        transform: rotateY(180deg) translateZ(100px);
    }

    .left {
        transform: rotateY(-90deg) translateZ(100px);
    }

}

/* ========================================
   CUBE + STARLINK PROMOTION SECTION
======================================== */

.technology-showcase {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;

    padding: 50px 6%;

    background: linear-gradient(
        135deg,
        #020705,
        #071a12,
        #020705
    );

    overflow: hidden;
}


/* LEFT SIDE */

.cube-side {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: center;

    min-width: 300px;
}


/* RIGHT SIDE */

.starlink-promo {
    flex: 1.4;

    display: flex;
    align-items: center;
    gap: 30px;

    padding: 35px;

    background: rgba(0, 0, 0, 0.75);

    border: 1px solid rgba(0, 180, 80, 0.5);

    border-radius: 18px;

    box-shadow:
        0 0 30px rgba(0, 180, 80, 0.15);
}


/* STARLINK IMAGE */

.starlink-image-box {
    flex: 1;
}

.starlink-image-box img {
    width: 100%;
    max-width: 420px;

    display: block;

    object-fit: contain;

    border-radius: 12px;

    transition: 0.4s ease;
}


.starlink-image-box img:hover {
    transform: scale(1.04);
}


/* TEXT */

.starlink-content {
    flex: 1;

    color: #ffffff;
}


.service-label {
    display: inline-block;

    color: #00c853;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 12px;
}


.starlink-content h2 {
    font-size: 42px;

    line-height: 1.1;

    margin: 0 0 15px;

    color: #ffffff;
}


.starlink-content h2 span {
    color: #00c853;
}


.starlink-description {
    color: #cccccc;

    line-height: 1.7;

    margin-bottom: 22px;
}


/* WE SUPPLY / SELL / INSTALL */

.starlink-services {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 25px;
}


.starlink-services span {
    background: #00a844;

    color: #ffffff;

    padding: 8px 12px;

    font-size: 12px;

    font-weight: 700;

    border-radius: 4px;

    letter-spacing: 1px;
}


/* CALL BUTTON */

.call-now {
    display: inline-flex;

    flex-direction: column;

    gap: 4px;

    background: #00a844;

    color: #ffffff;

    text-decoration: none;

    padding: 13px 25px;

    border-radius: 8px;

    font-weight: 600;

    transition: 0.3s;
}


.call-now strong {
    font-size: 18px;
}


.call-now:hover {
    background: #ffffff;

    color: #008c3a;

    transform: translateY(-3px);
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 1000px) {

    .technology-showcase {
        flex-direction: column;

        padding: 40px 20px;
    }


    .starlink-promo {
        flex-direction: column;

        text-align: center;

        width: 100%;
    }


    .starlink-services {
        justify-content: center;
    }


    .cube-side {
        width: 100%;
    }

}


@media (max-width: 600px) {

    .starlink-content h2 {
        font-size: 32px;
    }

    .starlink-promo {
        padding: 25px 18px;
    }

}