/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #092c55;
    --primary-teal: #1bb7b7;
    --teal-gradient: linear-gradient(90deg, #1bb7b7 0%, #0d799d 100%);
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --font-main: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 100px;
    background-color: var(--white);
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-left {
    display: flex;
    align-items: center;
    padding-left: 5%;
    width: 40%;
    position: relative;
    z-index: 2;
    background: var(--white);
}

.logo-container img {
    height: 70px; /* Adjust according to real logo size */
    width: auto;
    object-fit: contain;
}

.header-right-shape {
    width: 65%;
    background: var(--teal-gradient);
    border-bottom-left-radius: 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    padding-right: 5%;
    position: relative;
    margin-left: -5%; /* Overlap slightly */
}

.top-social-bar {
    position: absolute;
    top: 10px;
    right: 5%;
    display: flex;
    gap: 15px;
}

.top-social-bar a {
    color: var(--white);
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.top-social-bar a:hover {
    opacity: 0.8;
}

.main-nav {
    margin-bottom: 25px;
    margin-right: 20px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav ul li a {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    padding-bottom: 5px;
    position: relative;
}

.main-nav ul li a.active::after,
.main-nav ul li a:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 550px;
    background-color: var(--primary-blue);
    background-image: url('C:/Users/Yohan/.gemini/antigravity-ide/brain/a1a1734e-7cc9-4b63-8f58-e55601f0d28d/hero_bg_1782506699397.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

/* Fallback background if the generated image is not used */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('hero_bg.png') center/cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(9,44,85,1) 30%, rgba(9,44,85,0.6) 60%, rgba(9,44,85,0.1) 100%);
    z-index: 1;
}

/* Simple circuit board pattern for hero */
.hero-circuit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background-image: radial-gradient(circle at 10px 10px, rgba(27,183,183,0.3) 2px, transparent 0),
                      linear-gradient(90deg, rgba(27,183,183,0.1) 1px, transparent 1px),
                      linear-gradient(0deg, rgba(27,183,183,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-box {
    max-width: 550px;
    padding-left: 20px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 35px;
    color: #e0e6ed;
    font-style: italic; /* Following the mockup dummy text style slightly */
}

.btn-primary {
    display: inline-block;
    background: var(--teal-gradient);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(27, 183, 183, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 183, 183, 0.6);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.carousel-indicators .dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.carousel-indicators .dot.active {
    background-color: var(--white);
}

/* Services Section */
.services {
    padding: 70px 0 50px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Side circuit decorations */
.circuit-left, .circuit-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 200px;
    background-image: 
        linear-gradient(90deg, var(--primary-teal) 2px, transparent 2px),
        radial-gradient(circle at center, var(--primary-teal) 4px, transparent 4px);
    background-size: 20px 20px, 40px 40px;
    opacity: 0.2;
}

.circuit-left {
    left: -20px;
}

.circuit-right {
    right: -20px;
}

.services-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.service-card {
    flex: 1;
    text-align: center;
    padding: 0 25px;
}

.service-icon {
    font-size: 45px;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.service-divider {
    width: 1px;
    height: 150px;
    background-color: #e0e0e0;
    margin: 20px 0;
}

.bottom-shape {
    width: 90%;
    max-width: 1100px;
    height: 25px;
    background: var(--teal-gradient);
    border-radius: 20px;
    margin: 50px auto 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
    .main-header {
        flex-direction: column;
        height: auto;
    }
    .header-left, .header-right-shape {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }
    .header-left {
        justify-content: center;
        padding: 15px 0;
    }
    .header-right-shape {
        align-items: center;
        padding: 20px;
    }
    .top-social-bar {
        position: static;
        margin-bottom: 15px;
    }
    .main-nav {
        margin: 0;
    }
    
    .services-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .service-divider {
        width: 80%;
        height: 1px;
        margin: 30px 0;
    }
    .service-card {
        padding: 0 10px;
    }
}
