body {
    background-color: #03353f;
    /* Darkest teal from image */
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

/* Background gradient effect */
.hero-section {
    background: radial-gradient(circle at top right, #0a2d33 0%, #03323c 60%);
    padding: 100px 0;
}

/* Typography */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #4ed9ec;
    /* Cyan color */
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
}

/* Navigation Links */
.nav-link {
    color: #ffffff !important;
    margin: 0 10px;
    font-weight: 500;
}

/* Custom Buttons */
.btn-proposal {
    border: 2px solid #00c2cb;
    color: #ffffff;
    border-radius: 50px;
    padding: 10px 25px;
    background: rgba(0, 194, 203, 0.1);
    transition: all 0.3s ease;
}

.btn-proposal:hover {
    background: #00c2cb;
    box-shadow: 0 0 15px #00c2cb;
}

.btn-outline-cyan {
    border: 2px solid #00c2cb;
    color: #ffffff;
    border-radius: 50px;
    padding: 12px 30px;
    background: rgba(0, 194, 203, 0.05);
}

.btn-outline-cyan:hover {
    background: #00c2cb;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 194, 203, 0.5);
}

/* Floating animation for the image */
.floating-animation {
    animation: float 4s ease-in-out infinite;
}

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

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}



/* Color Palette */
:root {
    --bg-dark: #010c12;
    --cyan-main: #4ed9ec;
    --card-bg: rgba(7, 26, 35, 0.4);
    --border-color: rgba(78, 217, 236, 0.1);
}

.features-section {
    background-color: var(--bg-dark);
    color: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.text-cyan {
    color: var(--cyan-main);
}

.section-description {
    color: #cfd8dc;
    max-width: 700px;
}

/* Feature Card Styling */
.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
    /* Subtle inner glow */
    box-shadow: inset 0 0 20px rgba(78, 217, 236, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--cyan-main);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Icon Container */
.icon-circle {
    width: 70px;
    height: 70px;
    background-color: var(--cyan-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(78, 217, 236, 0.4);
}

.icon-circle img {
    width: 35px;
    filter: brightness(0);
    /* Makes icon black inside the cyan circle */
}

/* Card Typography */
.card-feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.card-feature-text {
    color: #b0bec5;
    line-height: 1.6;
    font-size: 0.95rem;
}


/* Section Base */
.powerhouse-section {
    background-color: #010c12;
    /* Matches previous sections */
    color: #ffffff;
}

/* Typography */
.powerhouse-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.text-cyan {
    color: #4ed9ec;
}

.powerhouse-text {
    font-size: 1.1rem;
    color: #cfd8dc;
    line-height: 1.6;
    max-width: 500px;
}

/* Rounded Image Styling */
.image-wrapper img {
    border: 1px solid rgba(78, 217, 236, 0.2);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

/* The "Learn More" Glowing Button */
.btn-glow-outline {
    display: inline-block;
    padding: 12px 45px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid #0a4f5a;
    /* Darker border base */
    background: linear-gradient(180deg, rgba(7, 38, 44, 0.8) 0%, rgba(1, 12, 18, 1) 100%);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 10px rgba(78, 217, 236, 0.1);
}

.btn-glow-outline:hover {
    border-color: #4ed9ec;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(78, 217, 236, 0.4),
        inset 0 0 15px rgba(78, 217, 236, 0.2);
    transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .powerhouse-title {
        font-size: 2rem;
    }

    .powerhouse-section {
        text-align: center;
    }

    .powerhouse-text {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Section Base */
.services-section {
    background-color: #010c12;
    color: #ffffff;
}

.services-main-title {
    font-size: 2.8rem;
    font-weight: 700;
}

.services-intro {
    color: #cfd8dc;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Base Service Card */
.service-card {
    border-radius: 15px;
    padding: 40px;
    transition: all 0.3s ease;
    border: 1px solid rgba(78, 217, 236, 0.1);
    display: flex;
    flex-direction: column;
}

/* Dark Card Specifics */
.dark-card {
    background: rgba(7, 26, 35, 0.6);
}

/* Image Card Specifics */
.image-card {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    /* Let overlay handle padding */
}

.card-overlay {
    background: linear-gradient(to bottom, rgba(1, 12, 18, 0.2), rgba(1, 12, 18, 0.9));
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    align-items: flex-end;
}

/* Typography in Cards */
.service-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.service-text {
    color: #b0bec5;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.read-more-link {
    color: #4ed9ec;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.read-more-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #4ed9ec;
}

/* Hover Effects */
.service-card:hover {
    transform: translateY(-5px);
    border-color: #4ed9ec;
}


/* Projects Container */
.projects-section {
    background-color: #010c12;
    color: #ffffff;
}

.project-card {
    position: relative;
    padding-bottom: 40px;
    /* Space for the floating box */
}

.project-img {
    border-radius: 20px;
    width: 100%;
    transition: transform 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Floating Info Box */
.project-info-box {
    background: #02161a;
    border: 1px solid rgba(78, 217, 236, 0.2);
    border-radius: 15px;
    padding: 25px 15px;
    width: 80%;
    margin: -60px auto 0;
    /* Pulls box up over the image */
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.project-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.view-link {
    color: #4ed9ec;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.view-link .arrow {
    margin-left: 8px;
    font-size: 1.2rem;
}

/* Hover Effects */
.project-card:hover .project-img {
    transform: scale(1.03);
}

.project-card:hover .project-info-box {
    border-color: #4ed9ec;
    box-shadow: 0 0 20px rgba(78, 217, 236, 0.2);
}

.view-link:hover {
    color: #ffffff;
}

/* Container Base */
.final-cta-section {
    background-color: #010c12;
    color: #ffffff;
    overflow: hidden;
}

/* Stats Bar Styling */
.stats-bar {
    background: rgba(7, 26, 35, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(78, 217, 236, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
}

.stat-label {
    color: #b0bec5;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.stat-icon {
    font-size: 2rem;
    color: #4ed9ec;
}

/* Vertical Dividers */
.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

/* Final Content Typography */
.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.cta-text {
    color: #cfd8dc;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Responsive Handling */
@media (max-width: 768px) {
    .stats-bar {
        flex-direction: column;
        padding: 30px;
    }

    .stat-item {
        margin-bottom: 25px;
        text-align: center;
        flex-direction: column;
    }

    .stat-icon {
        margin-right: 0 !important;
        margin-bottom: 10px;
    }

    .cta-title {
        font-size: 1.8rem;
        margin-top: 40px;
    }
}

.robot-image {
    width: 100%;
    min-height: 400px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('./assets/images/robot.png');
    /* This creates the 'floating' effect seen in the original image */
    animation: floatRobot 6s ease-in-out infinite;
    /* Teal glow effect matching the TGS brand */
    filter: drop-shadow(0 0 25px rgba(78, 217, 236, 0.3));
}

/* Animation to make the AI look active/floating */
@keyframes floatRobot {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}


/* Robot Image Styling */
.robot-image-hero {
    width: 100%;
    min-height: 400px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('./assets/images/hero.png');
    /* This creates the 'floating' effect seen in the original image */
    animation: floatRobot 2s ease-in-out infinite;
    /* Teal glow effect matching the TGS brand */
    filter: drop-shadow(0 0 25px rgba(78, 217, 236, 0.3));
}

/* Animation to make the AI look active/floating */
@keyframes floatRobot {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Ensure the column containing the image is centered on mobile */
@media (max-width: 991px) {
    .col-lg-6:has(.robot-image-hero) {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }

    .robot-image-hero {
        max-width: 80%;
        /* Slightly smaller on mobile for better framing */
    }
}

.robot-image-hero-2 {
    width: 100%;
    min-height: 400px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('./assets/images/hero-2.jpg');
    /* This creates the 'floating' effect seen in the original image */
    animation: floatRobot 2s ease-in-out infinite;
    /* Teal glow effect matching the TGS brand */
    filter: drop-shadow(0 0 25px rgba(78, 217, 236, 0.3));
}




/* Footer Styles */
.main-footer {
    background-color: #010c12;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bio {
    color: #cfd8dc;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-heading {
    color: #4ed9ec;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Custom Bullet Points */
.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    color: #cfd8dc;
}

.footer-links li::before,
.footer-contact li::before,
.sub-footer-links li::before {
    content: "◎";
    /* Custom target icon */
    position: absolute;
    left: 0;
    color: #4ed9ec;
    font-weight: bold;
}

.footer-links a,
.footer-contact a,
.sub-footer-links a {
    color: #cfd8dc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.sub-footer-links a:hover {
    color: #4ed9ec;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
}

.copyright {
    color: #cfd8dc;
    font-size: 0.9rem;
}

.sub-footer-links li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.text-cyan {
    color: #4ed9ec !important;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .main-footer {
        text-align: center;
    }

    .footer-links li,
    .footer-contact li {
        padding-left: 0;
    }

    .footer-links li::before,
    .footer-contact li::before {
        display: none;
        /* Simplify on small screens */
    }
}


.testimonial-card {
    background: linear-gradient(135deg, #062f3c, #021b25);
    border-radius: 15px;
}

.testimonial-section {
    background: linear-gradient(180deg, #021b25, #062f3c);
}

.testimonial-card {
    background: #031f2b;
    border-radius: 18px;
    padding: 30px;
    color: #d1e7ee;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
}

.rating {
    color: #ffc107;
    font-size: 1.1rem;
}

