:root {
    --primary-color: #0d47a1;
    --secondary-color: #00c853;
    --accent-color: #00e676;
    --bg-color: #f5f7fa;
    --card-bg: #ffffff;
    --text-color: #333333;
    --text-muted: #666666;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Roboto', sans-serif
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: #1a1a1a
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s
}

ul {
    list-style: none
}

.content-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px
}

.content-list li {
    margin-bottom: 10px;
    padding-left: 5px
}

.highlight {
    color: var(--secondary-color)
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

header {
    background-color: #ffffff;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1)
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 clamp(20px, 4vw, 50px)
}

.logo a {
    display: block;
    line-height: 0
}

.logo img {
    height: clamp(60px, 6vw, 90px);
    width: auto;
    object-fit: contain
}

nav ul {
    display: flex;
    gap: clamp(15px, 2.5vw, 30px);
    align-items: center
}

nav ul li a {
    font-weight: 600;
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    text-transform: uppercase;
    color: #333333;
    transition: color 0.3s
}

nav ul li a:hover {
    color: var(--primary-color)
}

.btn-nav {
    border: 2px solid var(--primary-color);
    padding: 6px 15px;
    border-radius: 5px;
    color: var(--primary-color);
    font-weight: 700;
    white-space: nowrap
}

.btn-nav:hover {
    background-color: var(--primary-color);
    color: #fff
}

.menu-icon {
    display: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer
}

#mobile-menu {
    position: fixed;
    top: 78px;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 2px solid var(--secondary-color);
    display: none;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2)
}

#mobile-menu.active {
    display: flex
}

#mobile-menu li {
    margin-bottom: 15px;
    text-align: center
}

#mobile-menu li a {
    font-size: 1rem;
    color: #333;
    display: block;
    padding: 10px
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
    overflow: hidden;
    position: relative
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 71, 161, 0.9), rgba(0, 0, 0, 0.4));
    z-index: 1
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 0
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0
}

.hero-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.slide.active {
    opacity: 1;
    z-index: 2
}

.hero-slide-1 {}

.hero-slide-2 {
    background-image: url('assets/cloud_server_white_1767161430972_result.webp')
}

.hero-slide-3 {
    background-image: url('assets/hero-bg_result.webp')
}

.hero-slide-4 {
    background-image: url('assets/main_hero_4_1767425363733_result.webp')
}

.hero-slide-5 {
    background-image: url('assets/main_hero_5_1767425382093_result.webp');
    background-size: 100% 100% !important
}

@media (max-width:768px) {
    .hero-slide-1 {}

    .hero-slide-2 {
        background-image: url('assets/mobile/cloud_server_white_1767161430972_result.webp')
    }

    .hero-slide-3 {
        background-image: url('assets/mobile/hero-bg_result.webp')
    }

    .hero-slide-4 {
        background-image: url('assets/mobile/main_hero_4_1767425363733_result.webp')
    }

    .hero-slide-5 {
        background-image: url('assets/mobile/main_hero_5_1767425382093_result.webp')
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 71, 161, 0.8), rgba(0, 0, 0, 0.3));
    z-index: 0
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 1100px;
    margin-left: 5%;
    margin-right: auto;
    padding: 0 20px;
    width: 100%
}

.hero-content h1,
.hero-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    /* Slightly reduced to fit more text */
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
    /* Increased line height for better readability */
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
    /* Allow up to 3 lines for hero since titles are long */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: auto;
    /* Remove strict min-height to allow natural flow up to 3 lines */
    max-height: 3.9em;
    /* Limit to 3 lines (1.3 * 3) */
}

/* ... existing code ... */

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #333;
    /* Force 2 lines max */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.4em;
    /* Approx height for 2 lines */
    line-height: 1.2em;
}

.hero-content p {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: #f0f0f0;
    margin-bottom: 35px;
    line-height: 1.6;
    font-weight: 300;
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px
}

.btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s
}

.btn-primary {
    background-color: var(--secondary-color);
    color: #000
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px)
}

.btn-primary i {
    margin-left: 8px;
    transition: margin-left 0.3s
}

.btn-primary:hover i {
    margin-left: 12px
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--primary-color)
}

.section-padding {
    padding: 80px 0
}

.bg-dark {
    background-color: var(--bg-color)
}

.section-title {
    text-align: center;
    margin-bottom: 60px
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color)
}

.underline {
    width: 100px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 0 auto
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px
}

.card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #e0e0e0;
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05)
}

.card:hover {
    transform: translateY(-5px);
    border-top-color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1)
}

.card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 25px
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #333
}

.card p {
    color: var(--text-muted)
}

.bg-darker {
    background-color: #eef2f6
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px
}

.service-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05)
}

.service-card:hover {
    border-bottom-color: var(--secondary-color);
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1)
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: color 0.3s
}

.service-card:hover i {
    color: var(--secondary-color)
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #333;
    /* Force 2 lines max */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.4em;
    /* Approx height for 2 lines */
    line-height: 1.2em;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 300px
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--secondary-color)
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #333333
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.2rem
}

.form-group {
    margin-bottom: 20px
}

input,
textarea {
    width: 100%;
    padding: 15px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    font-family: var(--font-body)
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 5px rgba(0, 200, 83, 0.2)
}

footer {
    background-color: #1a1a1a;
    color: #fff;
    padding-top: 30px;
    border-top: 3px solid var(--primary-color);
    font-size: 0.9rem
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff
}

.footer-col p {
    color: #cccccc;
    max-width: 300px;
    margin-bottom: 10px
}

.footer-col ul li {
    margin-bottom: 5px
}

.footer-col ul li a {
    color: #cccccc
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px
}

.copyright {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #333;
    color: #b0b0b0;
    font-size: 0.85rem
}

.design-credit {
    display: block;
    margin-bottom: 3px;
    font-weight: 500;
    color: #888
}

.social-media-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    background-color: #111;
    border-top: 1px solid #222
}

.social-media-row a {
    width: 45px;
    height: 45px;
    background-color: #222;
    border: 1px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: 0.3s
}

.social-media-row a:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3)
}

.social-media-row a[title="Facebook"]:hover {
    background-color: #3b5998;
    border-color: #3b5998
}

.social-media-row a[title="LinkedIn"]:hover {
    background-color: #0077b5;
    border-color: #0077b5
}

.social-media-row a[title="Instagram"]:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: #d6249f
}

.social-media-row a[title="YouTube"]:hover {
    background-color: #FF0000;
    border-color: #FF0000
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000
}

.whatsapp-float::after {
    content: "Click to Chat";
    position: absolute;
    right: 70px;
    background-color: #fff;
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none
}

.whatsapp-float:hover::after {
    opacity: 1
}

#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: none;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease
}

#back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px)
}

.whatsapp-float {
    bottom: 90px
}

@media (max-width:1440px) {
    header .container {
        padding: 0 20px
    }

    .logo img {
        height: 60px
    }

    nav ul {
        gap: 15px
    }

    nav ul li a {
        font-size: 0.75rem
    }

    .btn-nav {
        padding: 5px 12px;
        white-space: nowrap;
        font-size: 0.8rem
    }

    .hero-content h1 {
        font-size: 2.5rem
    }
}

@media (max-width:1024px) {
    nav {
        display: none
    }

    .menu-icon {
        display: block;
        cursor: pointer;
        color: var(--primary-color)
    }
}

@media (max-width:768px) {
    header .container {
        padding: 0 20px
    }

    .logo img {
        height: 60px
    }

    .hero,
    .hero-section {
        padding-top: 80px !important;
        min-height: 100vh !important;
        display: flex !important;
        align-items: center !important
    }

    .hero-content {
        margin-left: 0 !important;
        text-align: left !important;
        padding: 0 20px !important;
        width: 100% !important
    }

    .hero-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
        margin-bottom: 15px !important;
        color: #ffffff !important;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8)
    }

    .hero-content p {
        font-size: 1rem !important;
        border-left: 3px solid var(--secondary-color) !important;
        border-bottom: none !important;
        padding-left: 15px !important;
        padding-bottom: 0 !important;
        display: block !important;
        margin-bottom: 25px !important;
        text-align: left !important
    }

    .hero-buttons {
        justify-content: flex-start !important;
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 15px !important;
        padding: 0 !important
    }

    .slide {
        background-size: 100% 100% !important;
        background-position: center center !important;
        height: 100% !important
    }

    .hero-slider {
        top: 80px !important;
        height: calc(100% - 80px) !important
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr
    }

    .hero-bg-img img {
        object-fit: fill
    }
}