﻿/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
}


.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.nav-group {
    display: flex;
    align-items: center;
    gap: 60px;
}

.nav-link {
    text-decoration: none;
    color: #111;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

    .nav-link:hover {
        color: #0f9d58;
    }



.contact-btn {
    background: linear-gradient(to right, #fcd34d, #fbbf24);
    color: #000;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

    .contact-btn:hover {
        background: linear-gradient(to right, #fbbf24, #fcd34d);
    }

    .contact-btn img {
        height: 16px;
    }


.site-footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    align-items: flex-start;
}

.footer-left {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-right {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    text-align: right; /* aligns content to right */
}


.site-name {
    font-size: 24px;
    margin-bottom: 15px;
}

.social-icons a {
    display: inline-block;
    color: white;
    background: #333;
    padding: 10px;
    margin-right: 10px;
    border-radius: 50%;
    transition: 0.3s ease;
    font-size: 16px;
}

    .social-icons a:hover {
        background-color: #555;
        transform: translateY(-2px);
    }


.footer-right h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-right p {
    margin: 5px 0;
    font-size: 15px;
    color: #ccc;
}

hr {
    border: 0;
    border-top: 1px solid #444;
    margin: 20px 0;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #888;
}

/* Solutions Header */
.solutions-header {
    background: linear-gradient(rgba(0, 77, 102, 0.9), rgba(0, 77, 102, 0.9)), url('https://i.imgur.com/qM7tvPq.png');
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
    text-align: center;
    color: white;
}

    .solutions-header h2 {
        font-size: 32px;
        font-weight: 600;
        letter-spacing: 1px;
    }

/* Module Buttons */
.module-buttons {
    display: flex;
    justify-content: center;
    gap: 90px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.tab-button {
    padding: 10px 25px;
    border: none;
    border-radius: 20px;
    font-size: 30px;
    cursor: pointer;
    background-color: transparent;
    color: #004d66;
    transition: all 0.3s ease;
}

    .tab-button.active {
        background-color: #004d66;
        color: white;
    }

/* Module Content */
.cd2-module-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    border-radius: 0;
    overflow: hidden;
}

.cd2-module-image {
    flex: 1;
}

    .cd2-module-image img {
        width: 100%;
        max-width: 500px;
        height: 100%;
        object-fit: cover;
        display: block;
        border-top-left-radius: 20px;
    }

.cd2-module-list {
    background-color: #006066;
    color: white;
    padding: 30px 35px;
    border-top-right-radius: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 260px;
    flex: 1;
}

    .cd2-module-list h3 {
        font-size: 24px;
        margin-bottom: 18px;
        font-weight: 600;
    }

.cd2-module-tag {
    background-color: white;
    color: #006066;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
    width: fit-content;
}

.cd2-module-list ul {
    list-style: none;
    padding-left: 0;
}

    .cd2-module-list ul li {
        margin: 12px 0;
        font-size: 16px;
        line-height: 1.5;
    }

/* Responsive */
@media (max-width: 768px) {
    .cd2-module-content {
        flex-direction: column;
    }

    .cd2-module-image img {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    .cd2-module-list {
        border-top-right-radius: 0;
        border-bottom-left-radius: 20px;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .module-content.accurate-layout {
        flex-direction: column;
    }

    .module-image img {
        max-width: 100%;
        border-radius: 10px 10px 0 0;
    }

    .module-list {
        border-radius: 0 0 10px 10px;
        text-align: center;
    }
}



.cd1-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px;
    font-family: "Segoe UI", sans-serif;
    color: #333;
}

.cd1-top-text h3 {
    font-size: 35px;
    margin-bottom: 15px;
    color: #005c66;
}

.cd1-top-text p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.cd1-bottom-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    margin-top: 20px;
}

.cd1-img {
    flex: 1 1 220px;
    max-width: 250px;
}

    .cd1-img img {
        width: 100%;
        border-radius: 20px;
    }

.cd1-text-box {
    flex: 2;
    background-color: #e6f1f3;
    padding: 20px;
    border-radius: 20px;
    font-size: 18px;
    color: #333;
}

@media (max-width: 768px) {
    .cd1-bottom-row {
        flex-direction: column;
    }

    .cd1-img, .cd1-text-box {
        max-width: 100%;
    }

    .cd1-text-box {
        font-size: 15px;
    }
}



.cd2-container {
    max-width: 1000px;
    margin: auto;
}

.cd2-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 20px;
}

.cd2-icon {
    flex-shrink: 0;
    font-size: 75px;
    color: #0099a8;
    padding-top: 5px;
}

.cd2-text-content h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.cd2-text-content p {
    color: #444;
    line-height: 1.5;
}

.cd2-video-section {
    margin-top: 50px;
}

.cd2-video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

    .cd2-video-wrapper video {
        width: 100%;
        display: block;
        border-radius: 16px;
    }

    .cd2-video-wrapper::after {
        content: '\f144';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 50px;
        color: white;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.8;
        pointer-events: none;
    }

@media (max-width: 768px) {
    .cd2-feature {
        flex-direction: column;
        align-items: flex-start;
    }

    .cd2-icon {
        margin-bottom: 10px;
    }
}
