/* General Styles */
:root {
    --primary-purple: #4A0070; /* Darker Purple */
    --secondary-purple: #7B1FA2; /* Lighter Purple */
    --accent-color: #00BCD4; /* Teal/Cyan for contrast */
    --text-light: #E0E0E0;
    --text-dark: #333333;
    --bg-dark: #1A002B; /* Very dark purple for body */
    --card-bg: #2C0040;
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-light);
    font-weight: 700;
}

a {
    color: var(--accent-color);
    text-decoration: none;
}

a:hover {
    color: var(--secondary-purple);
    text-decoration: none; /* Remove underline on hover for links */
}

.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-decoration: none; /* Ensure no underline on buttons */
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--secondary-purple);
    border-color: var(--secondary-purple);
    color: var(--text-light);
}

.btn-outline-light {
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-outline-light:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
    border-color: var(--text-light);
}

.section-title {
    font-size: 2.8rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 50px;
    color: var(--accent-color);
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-purple);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 2rem;
    color: var(--secondary-purple);
}

.lead-text {
    font-size: 1.15rem;
    color: var(--text-light);
}

/* Header/Navigation */
header {
    background-color: rgba(26, 0, 43, 0.9); /* Slightly transparent dark purple */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1030;
}

.navbar-brand {
    color: var(--text-light) !important;
    font-size: 1.8rem;
}

.navbar-brand:hover {
    color: var(--accent-color) !important;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 600;
    margin-left: 20px;
    position: relative;
    text-decoration: none; /* Ensure no underline */
}


.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* About Section */
.about-section {
    background-color: var(--card-bg);
    color: var(--text-light);
}

.about-list {
    list-style: none;
    padding-left: 0;
}

.about-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.about-list li i {
    color: var(--accent-color);
}

/* Services Section */
.services-section {
    background-color: var(--bg-dark);
}

.service-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
}

.service-card h3 {
    color: var(--secondary-purple);
}

/* Team Section */
.team-section {
    background-color: var(--card-bg);
}

.team-member-card {
    background-color: var(--bg-dark);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.founder-card {
    padding: 30px !important;
}

.team-avatar {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--accent-color);
}

.team-avatar-small {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid var(--secondary-purple);
}

.team-member-card h3 {
    color: var(--accent-color);
}

.team-member-card h4 {
    color: var(--text-light);
}

/* Portfolio Section */
.portfolio-section {
    background-color: var(--bg-dark);
}

.portfolio-img {
    height: 600px;
    object-fit: cover;
    filter: brightness(0.7);
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    bottom: 20%;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: var(--accent-color);
    border-radius: 50%;
    padding: 15px;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--accent-color);
    opacity: 0.7;
}

.carousel-indicators .active {
    opacity: 1;
}

/* Industries Section */
.industries-section {
    background-color: var(--card-bg);
}

.industry-card {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
    color: var(--text-light);
}

.industry-card .overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
}

.industry-card h3 {
    color: var(--accent-color);
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-purple);
}

.stat-card {
    background-color: var(--secondary-purple);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid var(--border-color);
}

.stat-card:hover {
    transform: translateY(-10px);
    background-color: var(--accent-color);
    color: var(--bg-dark);
}

.stat-card:hover .stat-icon {
    color: var(--bg-dark);
}

.stat-icon {
    font-size: 3.5rem;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.stat-card h2 {
    color: var(--text-light);
}

.stat-card:hover h2, .stat-card:hover p {
    color: var(--bg-dark);
}

/* How It Works Section */
.how-it-works-section {
    background-color: var(--bg-dark);
}

.step-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    max-width: 400px; /* Limit width for carousel items */
    border: 1px solid var(--border-color);
}

.step-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
}

.step-card h3 {
    color: var(--secondary-purple);
}

.how-it-works-section .carousel-indicators [data-bs-target] {
    background-color: var(--secondary-purple);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--card-bg);
}

.testimonial-card {
    background-color: var(--bg-dark);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

.testimonial-card h5 {
    color: var(--accent-color);
}

/* Contact Form Section */
.contact-section {
    background-color: var(--bg-dark);
}

.contact-form-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.form-label {
    color: var(--text-light);
    font-weight: 600;
}

.form-control, .form-select {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 10px 15px;
    border-radius: 8px;
}

.form-control:focus, .form-select:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 188, 212, 0.25);
    color: var(--text-light);
}

.form-control::placeholder, .form-select option {
    color: rgba(255, 255, 255, 0.6);
}

.form-select option {
    background-color: var(--card-bg);
    color: var(--text-light);
}

.form-select option:checked {
    background-color: var(--secondary-purple);
    color: var(--text-light);
}

.invalid-feedback {
    color: #ff6b6b;
}

/* Cookie Banner */
.cookie-banner {
    background-color: rgba(26, 0, 43, 0.95); /* Darker than header */
    color: var(--text-light);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1040;
    display: none; /* Hidden by default, shown by JS */
}

.cookie-banner p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.cookie-banner a {
    color: var(--accent-color);
}

.cookie-banner .btn {
    text-decoration: none; /* Remove underline */
}

/* Cookie Modal */
.cookie-modal-content {
    background-color: var(--card-bg);
    color: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 15px;
}

.cookie-modal-content .modal-header {
    border-bottom-color: var(--border-color);
}

.cookie-modal-content .modal-footer {
    border-top-color: var(--border-color);
}

.btn-close-white {
    filter: invert(1);
}

.form-check-label {
    color: var(--text-light);
}

.form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 188, 212, 0.25);
}

/* Footer */
.footer-section {
    background-color: var(--primary-purple);
    color: var(--text-light);
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-links {
    padding-left: 0;
    margin-bottom: 0;
}

.footer-links li {
    margin: 0 10px;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    text-decoration: none; /* Remove underline */
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.6rem;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
    }

    .portfolio-img {
        height: 300px;
    }

    .carousel-caption {
        bottom: 5%;
        padding: 10px;
    }

    .carousel-caption h3 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }

    .cookie-banner .container {
        flex-direction: column;
    }

    .cookie-banner .d-flex.flex-column.flex-md-row {
        width: 100%;
    }

    .cookie-banner .btn {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 10px !important;
    }

    .cookie-banner .btn:last-child {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 60vh;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .lead-text {
        font-size: 1rem;
    }

    .service-icon, .stat-icon, .step-icon {
        font-size: 2.5rem;
    }

    .stat-card h2 {
        font-size: 2.5rem;
    }

    .team-avatar {
        width: 100px;
        height: 100px;
    }

    .team-avatar-small {
        width: 70px;
        height: 70px;
    }

    .portfolio-img {
        height: 250px;
    }

    .carousel-caption {
        display: none !important; /* Hide captions on very small screens */
    }
}
/* Styles for the main content frame */
.dataTrustFrame {
    padding-top: 60px; /* Top padding for the content frame */
    padding-left: 20px; /* Left padding for the content frame */
    padding-right: 20px; /* Right padding for the content frame */
    margin-left: auto;   /* Center the content frame */
    margin-right: auto;  /* Center the content frame */
    max-width: 1200px;   /* Max width for readability */
    box-sizing: border-box; /* Include padding in element's total width and height */
}

/* Heading styles within .dataTrustFrame */
.dataTrustFrame h1 {
    font-size: 2.2rem;     /* Slightly larger than body text, not overly huge */
    margin-top: 0;         /* Remove default top margin */
    margin-bottom: 0.8em;  /* Standard bottom margin */
    line-height: 1.2;      /* Optimal line height for headings */
    color: var(--text-light); /* Inherit from general styles or explicitly set */
}

.dataTrustFrame h2 {
    font-size: 1.8rem;     /* Smaller than h1 */
    margin-top: 1.5em;     /* Add some space above */
    margin-bottom: 0.7em;  /* Standard bottom margin */
    line-height: 1.3;      /* Optimal line height for headings */
    color: var(--text-light);
}

.dataTrustFrame h3 {
    font-size: 1.5rem;     /* Smaller than h2 */
    margin-top: 1.5em;     /* Add some space above */
    margin-bottom: 0.6em;  /* Standard bottom margin */
    line-height: 1.4;      /* Optimal line height for headings */
    color: var(--text-light);
}

.dataTrustFrame h4 {
    font-size: 1.25rem;    /* Smaller than h3 */
    margin-top: 1.2em;     /* Add some space above */
    margin-bottom: 0.5em;  /* Standard bottom margin */
    line-height: 1.5;      /* Optimal line height for headings */
    color: var(--text-light);
}

.dataTrustFrame h5 {
    font-size: 1.1rem;     /* Smaller than h4, closer to body text */
    margin-top: 1em;       /* Add some space above */
    margin-bottom: 0.4em;  /* Standard bottom margin */
    line-height: 1.5;      /* Optimal line height for headings */
    color: var(--text-light);
}

/* Paragraph styles within .dataTrustFrame */
.dataTrustFrame p {
    font-size: 1rem;       /* Base font size for paragraphs */
    margin-top: 0;         /* Remove default top margin */
    margin-bottom: 1em;    /* Standard bottom margin for paragraphs */
    line-height: 1.6;      /* Optimal line height for readability */
    color: var(--text-light);
}

/* Unordered list styles within .dataTrustFrame */
.dataTrustFrame ul {
    list-style-type: disc; /* Default disc bullet points */
    margin-top: 1em;       /* Space above the list */
    margin-bottom: 1em;    /* Space below the list */
    padding-left: 25px;    /* Standard indentation for list items */
    color: var(--text-light);
}

/* List item styles within .dataTrustFrame */
.dataTrustFrame li {
    font-size: 1rem;       /* Inherit or set base font size for list items */
    margin-bottom: 0.5em;  /* Space between list items */
    line-height: 1.6;      /* Optimal line height for list items */
    color: var(--text-light);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .dataTrustFrame {
        padding-top: 40px; /* Reduce top padding on smaller screens */
        padding-left: 15px; /* Reduce side padding on smaller screens */
        padding-right: 15px; /* Reduce side padding on smaller screens */
    }

    .dataTrustFrame h1 {
        font-size: 1.8rem;
    }

    .dataTrustFrame h2 {
        font-size: 1.6rem;
    }

    .dataTrustFrame h3 {
        font-size: 1.3rem;
    }

    .dataTrustFrame h4 {
        font-size: 1.1rem;
    }

    .dataTrustFrame h5 {
        font-size: 1rem;
    }

    .dataTrustFrame p,
    .dataTrustFrame li {
        font-size: 0.95rem;
    }
}


.navbar-brand span{
    font-size: clamp(18px,2.5vw,20px) !important;
}