﻿body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.hero-section {
    background-color: white;
    text-align: center;
    padding: 100px 0;
}

    .hero-section .logo img {
        max-width: 200px;
    }

.slogan-text {
    font-size: 1.25rem; /* Smaller font size for elegance */
    color: #959da5; /* Soft, muted color for a more delicate feel */
    margin-top: 30px; /* Add space between the title and slogan */
    font-style: italic; /* Add a bit of elegance with italics */
    font-weight: 300; /* Light font weight for a subtle effect */
}

.section {
    padding: 50px 20px;
    text-align: center;
}

.title {
    color: #08243d;
}

/* What We Do Section Styles */
.services-section .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for elegance */
    transition: transform 0.3s ease-in-out;
}

.services-section .card-title {
    font-weight: 600;
    font-size: 1.25rem;
    color: #08243d;
}

.services-section .card-text {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
}

.services-section i {
    color: #007bff; /* Primary color for icons */
}


/* Tech Stack Section */
.tech-stack-section h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #959da5;
}

.tech-stack-section img {
    max-width: 100px;
    margin-bottom: 10px;
}

.tech-stack-section p {
    font-weight: 600;
    color: #959da5;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .tech-stack-section img {
        max-width: 80px;
    }
}


/* Tech Stack Section Styling */
.tech-stack-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px; /* Add spacing below the main title */
    color: #08243d;
}

.category-title {
    font-size: 1.5rem; /* Slightly smaller than the main title */
    font-weight: 600;
    color: #959da5;
    padding-bottom: 10px; /* Space below the subtitle */
    margin-bottom: 30px; /* Spacing between the title and the logos */
}

.tech-category {
    margin-bottom: 60px; /* Increase spacing between each tech category */
}


.contact-section {
    background-color: #f8f9fa; /* Light background for contrast */
    padding: 50px 20px;
}

    .contact-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
        color: #08243d;
    }

    .contact-section p {
        font-size: 1.1rem;
        color: #555;
    }

    .contact-section a {
        color: #08243d;
        text-decoration: none;
    }

        .contact-section a:hover {
            text-decoration: underline;
        }

    .contact-section i {
        margin-right: 10px;
        color: #08243d;
    }

.linkedin-link {
    font-size: 1.2rem;
    display: inline-block;
    color: #08243d;
}

    .linkedin-link i {
        font-size: 1.5rem;
        margin-right: 8px;
    }

.footer {
    background-color: #08243d;
    color: #fff;
    padding: 20px 0;
}

    .footer p {
        margin: 0;
        font-size: 0.9rem;
    }

    .footer a {
        color: #ccc;
        text-decoration: none;
    }

        .footer a:hover {
            color: #fff;
        }
