/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding-top: 80px; /* Space for the fixed header */
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
	
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    overflow: hidden; /* Hide overflow */
}

header {
    display: flex;
    justify-content: space-between; /* Space between logo and nav */
    align-items: center;
    padding: 1rem 5%;
    box-sizing: border-box; /* Ensure padding does not affect width */
}

.logo {
    display: flex;
    align-items: center; /* Align items vertically */
}

.logo img {
    height: 50px;
    margin-right: 1rem; /* Space between logo image and title */
}
.logo-title-container {
    display: flex;
    align-items: center;
}
.title h1 {
    margin-left: 1rem;
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif; /* A more modern font */
    font-weight: 800;
    letter-spacing: 0.01em;
    background-color: #101010;
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
    position: relative;
}

nav {
    flex: 1;
    display: flex;
    justify-content: flex-end; /* Align navigation items to the right */
    overflow: hidden; /* Hide overflow in nav */
}

nav ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: nowrap; /* Prevent wrapping */
    overflow: hidden; /* Hide overflow in ul */
}

nav ul li {
    margin-left: 0rem; /* Space between navigation items */
    background-color: #f9f8f83c; /* Light background color */
    border-radius: 8px; /* Rounded corners */
    padding: 0rem 0rem; /* Padding inside the navigation items */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Subtle shadow */
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

nav ul li a {
    text-decoration: none;
    color: #333; /* Text color */
    font-weight: bold;
    display: block; /* Make the link fill the list item */
    padding: 0.5rem 1rem; /* Padding inside the link */
    transition: color 0.3s ease; /* Smooth transition for link color */
}

nav ul li a:hover {
    color: #0066cc; /* Link color on hover */
}

nav ul li:hover {
    background-color: #e0e0e0; /* Background color on hover */
    box-shadow: 0 4px 6px rgba(0,0,0,0.15); /* Increased shadow depth on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        margin-top: 1rem;
    }

    nav ul li {
        margin: 0.5rem 0;
    }
}

   

/* Other CSS styles */
/* Main Content Styles */
main {
    padding: 2rem 5%;
}

h1, h2, h3 {
    color: #003366;
}

.btn {
    display: inline-block;
    background-color: #0066cc;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #004c99;
}

/* Home Page Styles */
.hero {
    background-color: #e6f2ff;
    padding: 4rem 2rem;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

.hero h1 {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out 0.5s forwards;
}

.hero p {
    opacity: 0;
    animation: typeWriter 2s steps(60) 1s forwards;
}

.hero button {
    opacity: 0;
    transform: scale(0.9);
    animation: popIn 0.5s ease-out 2s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typeWriter {
    to { opacity: 1; }
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    perspective: 1000px; /* For 3D effect */
}

.service {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    transform-style: preserve-3d;
}

.service-icon {
    width: 150px;
    height: 150px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.service:hover {
    transform: scale(1.05) translateZ(20px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service:hover .service-icon {
    transform: scale(1.1);
}

.service h3 {
    transition: color 0.3s ease;
}

.service:hover h3 {
    color: #007bff; /* Change to your preferred highlight color */
}

.service p {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.service:hover p {
    opacity: 1;
}


.testimonials {
    background-color: #003366;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

/* Testimonials Section */

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    max-width: 250px; /* Reduced max width */
    text-align: left;
    font-size: 0.9rem; /* Reduced font size */
}

.testimonial blockquote {
    font-style: italic;
    margin: 0 0 0.5rem 0; /* Reduced margin */
    color: #333;
}

.testimonial cite {
    font-weight: lighter;
    color: #101010;
    display: block; /* Ensure cite is on a new line */
    margin-top: 0.5rem; /* Added margin for separation */
}


/* Responsive design for testimonials */
@media (max-width: 768px) {
    .testimonial-container {
        flex-direction: column;
        align-items: center;
    }

    .testimonial {
        width: 100%;
        max-width: none;
    }
}

/* Services Page Styles */
.services-hero {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.services-hero h1 {
    color: #ffffff; /* Ensure the heading is visible */
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
}

.service-card {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 3rem;
    color: #0066cc;
    margin-bottom: 1rem;
}
.service-card:hover h3 {
    color: #007bff; /* Change to your preferred highlight color */
}

.learn-more {
    display: inline-block;
    margin-top: 1rem;
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #e6f2ff;
    padding: 4rem 2rem;
    text-align: center;
}

.reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reason i {
    color: #0066cc;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Call to Action Section */
.call-to-action {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.call-to-action .btn {
    background-color: white;
    color: #003366;
}

.call-to-action .btn:hover {
    background-color: #e6f2ff;
}

/* About Page Styles */
.company-overview, .team {
    padding: 4rem 2rem;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-member:hover h3 {
    color: #007bff; /* Change to your preferred highlight color */
}
/* Case Studies Page Styles */
.case-studies {
    padding: 4rem 2rem;
}

.case-study {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Blog Page Styles */
.blog {
    padding: 4rem 2rem;
}

.blog-post {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Contact Page Styles */
.contact-hero {
    background: #003366;
    background-position: center;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-form {
    flex: 2;
    min-width: 300px;
    margin: 1rem;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-info {
    flex: 1;
    min-width: 300px;
    margin: 1rem;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form h2, .contact-info h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 0.5rem;
    color: #555;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #0066cc;
    outline: none;
}

.btn-submit {
    background-color: #0066cc;
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #004c99;
    transform: translateY(-2px);
}

.locations {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location {
    text-align: left;
    margin: 1rem 0;
}

.location i {
    font-size: 1.5rem;
    color: #0066cc;
    margin-right: 0.5rem;
    vertical-align: middle;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.contact-hero, .contact-form, .contact-info {
    animation: fadeIn 1s ease-out;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}

/* Footer Styles */
footer {
    background-color: #f8f8f8;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    nav ul {
        margin-top: 1rem;
    }

    .services-grid,
    .reasons,
    .team-container {
        grid-template-columns: 1fr;
    }
}
/* IT Consulting Page Styles */
.it-consulting-hero {
    background-color: #003366; /* Dark Blue Background */
    color: white; /* White text for contrast */
    text-align: center;
    padding: 4rem 2rem;
}

.it-consulting-hero h1 {
    color: #ffffff; /* Ensure the heading is visible */
}

.it-consulting-content {
    padding: 4rem 2rem;
    background-color: #f4f4f4;
}

.it-consulting-service {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.it-consulting-service i {
    font-size: 3rem;
    color: #0066cc;
    margin-bottom: 1rem;
}

.it-consulting-service h2 {
    color: #003366; /* Dark Blue for headings */
}

.it-consulting-service ul {
    list-style-type: disc;
    margin: 1rem 0 0 1.5rem;
    padding: 0;
}

.it-consulting-service li {
    margin-bottom: 0.5rem;
    color: #333; /* Ensure list items are visible */
    text-align: left;
}

.call-to-action {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.call-to-action .btn {
    background-color: white;
    color: #003366;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.call-to-action .btn:hover {
    background-color: #e6f2ff;
}
/* Mobile Application Page Styles */
.mobile-app-hero {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.mobile-app-hero h1 {
    color: #ffffff; /* Ensure the heading is visible against the dark background */
}

.mobile-app-content {
    padding: 4rem 2rem;
    background-color: #f4f4f4;
}

.mobile-app-service {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.mobile-app-service i {
    font-size: 3rem;
    color: #0066cc;
    margin-bottom: 1rem;
}

.mobile-app-service h2 {
    color: #003366;
}

.mobile-app-service ul {
    list-style-type: disc;
    margin: 1rem 0 0 1.5rem;
    padding: 0;
}

.mobile-app-service li {
    margin-bottom: 0.5rem;
}

.call-to-action {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.call-to-action .btn {
    background-color: white;
    color: #003366;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.call-to-action .btn:hover {
    background-color: #e6f2ff;
}
/* Cybersecurity Page Styles */
.cybersecurity-hero {
    background-color: #003366; /* Dark Blue Background */
    color: white; /* White text for contrast */
    text-align: center;
    padding: 4rem 2rem;
}

.cybersecurity-hero h1 {
    color: #ffffff; /* Ensure the heading is visible against the dark background */
}

.cybersecurity-content {
    padding: 4rem 2rem;
    background-color: #f4f4f4;
}

.cybersecurity-service {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.cybersecurity-service i {
    font-size: 3rem;
    color: #0066cc;
    margin-bottom: 1rem;
}

.cybersecurity-service h2 {
    color: #003366; /* Dark Blue for headings */
}

.cybersecurity-service ul {
    list-style-type: disc;
    margin: 1rem 0 0 1.5rem;
    padding: 0;
}

.cybersecurity-service li {
    margin-bottom: 0.5rem;
    color: #333; /* Ensure list items are visible */
}

.call-to-action {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.call-to-action .btn {
    background-color: white;
    color: #003366;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.call-to-action .btn:hover {
    background-color: #e6f2ff;
}
/* Cloud Services Page Styles */
.cloud-services-hero {
    background-color: #003366; /* Dark Blue Background */
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.cloud-services-hero h1 {
    color: #ffffff; /* Ensure the heading is visible */
}

.cloud-services-content {
    padding: 4rem 2rem;
    background-color: #f4f4f4;
}

.cloud-service {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.cloud-service i {
    font-size: 3rem;
    color: #0066cc;
    margin-bottom: 1rem;
}

.cloud-service h2 {
    color: #003366; /* Dark Blue for headings */
}

.cloud-service ul {
    list-style-type: disc;
    margin: 1rem 0 0 1.5rem;
    padding: 0;
}

.cloud-service li {
    margin-bottom: 0.5rem;
    color: #333; /* Ensure list items are visible */
}

/* AI Solutions Page Styles */
.ai-solutions-hero {
    background-color: #003366; /* Dark Blue Background */
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.ai-solutions-hero h1 {
    color: #ffffff; /* Ensure the heading is visible */
}

.ai-solutions-content {
    padding: 4rem 2rem;
    background-color: #f4f4f4;
}

.ai-solution {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.ai-solution i {
    font-size: 3rem;
    color: #0066cc;
    margin-bottom: 1rem;
}

.ai-solution h2 {
    color: #003366; /* Dark Blue for headings */
}

.ai-solution ul {
    list-style-type: disc;
    margin: 1rem 0 0 1.5rem;
    padding: 0;
}

.ai-solution li {
    margin-bottom: 0.5rem;
    color: #333; /* Ensure list items are visible */
}

/* Software Development Page Styles */
.software-development-hero {
    background-color: #003366; /* Dark Blue Background */
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.software-development-hero h1 {
    color: #ffffff; /* Ensure the heading is visible */
}

.software-development-content {
    padding: 4rem 2rem;
    background-color: #f4f4f4;
}

.software-service {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.software-service i {
    font-size: 3rem;
    color: #0066cc;
    margin-bottom: 1rem;
}

.software-service h2 {
    color: #003366; /* Dark Blue for headings */
}

.software-service ul {
    list-style-type: disc;
    margin: 1rem 0 0 1.5rem;
    padding: 0;
}

.software-service li {
    margin-bottom: 0.5rem;
    color: #333; /* Ensure list items are visible */
}

/* Company Overview Styles */
.company-overview {
    background-color: #f0f8ff; /* Light background for readability */
    color: #333;
    text-align: center;
    padding: 4rem 2rem;
}

.company-overview h1 {
    color: #003366; /* Dark Blue Heading */
}

.company-overview p {
    margin: 1rem 0;
    line-height: 1.6;
}

/* Team Section Styles */
.team {
    padding: 4rem 2rem;
    background-color: #ffffff;
    text-align: center;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.team-member {
    background-color: #f4f4f4;
    border-radius: 8px;
    padding: 2rem;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.team-member i {
    font-size: 3rem;
    color: #003366;
    margin-bottom: 1rem;
}

.team-member h3 {
    color: #003366;
}

.team-member p {
    color: #666;
}

/* Call-to-Action Section Styles */
.call-to-action {
    background-color: #003366; /* Dark Blue Background */
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.call-to-action h2 {
    margin-bottom: 1rem;
}

.call-to-action p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.call-to-action .btn {
    background-color: #0066cc;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.call-to-action .btn:hover {
    background-color: #005bb5;
}
/* Insurance Page Styles */
.insurance-hero {
    background-color: #003366; /* Dark Blue Background */
    color: white; /* White text for contrast */
    text-align: center;
    padding: 4rem 2rem;
}

.insurance-hero h1 {
    color: #ffffff; /* Ensure the heading is visible */
}

.insurance-content {
    padding: 4rem 2rem;
    background-color: #f4f4f4;
}

.insurance-service {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.insurance-service i {
    font-size: 3rem;
    color: #0066cc;
    margin-bottom: 1rem;
}

.insurance-service h2 {
    color: #003366; /* Dark Blue for headings */
}

.insurance-service ul {
    list-style-type: disc;
    margin: 1rem 0 0 1.5rem;
    padding: 0;
}

.insurance-service li {
    margin-bottom: 0.5rem;
    color: #333; /* Ensure list items are visible */
}

/* Healthcare Page Styles */
.healthcare-hero {
    background-color: #003366; /* Dark Blue Background */
    color: white; /* White text for contrast */
    text-align: center;
    padding: 4rem 2rem;
}

.healthcare-hero h1 {
    color: #ffffff; /* Ensure the heading is visible */
}

.healthcare-content {
    padding: 4rem 2rem;
    background-color: #f4f4f4;
}

.healthcare-service {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.healthcare-service i {
    font-size: 3rem;
    color: #0066cc;
    margin-bottom: 1rem;
}

.healthcare-service h2 {
    color: #003366; /* Dark Blue for headings */
}

.healthcare-service ul {
    list-style-type: disc;
    margin: 1rem 0 0 1.5rem;
    padding: 0;
}

.healthcare-service li {
    margin-bottom: 0.5rem;
    color: #333; /* Ensure list items are visible */
}

/* Call to Action Section */
.call-to-action {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.call-to-action .btn {
    background-color: white;
    color: #003366;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.call-to-action .btn:hover {
    background-color: #e6f2ff;
}
