/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tinos', serif; /* Tinos for body text */
    line-height: 1.9; /* Adjusted line height for better readability with Tinos */
    color: #333;
    overflow-x: hidden;
    font-size: 1.3rem; /* Increased base font size for Tinos */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 2rem; /* Keep for fallback if image fails */
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    height: 144px; /* Consistent logo container height */
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%; /* Make image fill the logo container height */
    width: auto;
    max-width: 604.8px; /* Consistent max width */
    display: block;
    filter: brightness(1.2); /* Slightly brighten the logo for better contrast */
}

.logo a { /* Style for the new link wrapping the logo */
    display: flex; /* Make the link container flexible */
    height: 100%; /* Ensure link takes up full logo height */
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-family: 'Rationale', sans-serif; /* Rationale for navigation */
    font-weight: 700; /* Bold */
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2); /* Shade */
    font-size: 1.92rem; /* Reduced font size by 20% (from 2.4rem) */
}

.nav-links a:hover {
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section (Common styles for hero sections) */
.service-hero {
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.service-hero h1 {
    font-family: 'Rationale', sans-serif;
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    font-weight: 700;
}

.service-hero p {
    font-size: 1.8rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Section Titles (Common styles for section titles) */
.section-title {
    font-family: 'Rationale', sans-serif;
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
    font-weight: 700;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    display: block;
    margin: 20px auto;
    border-radius: 2px;
}

/* Card Styles (Common styles for various cards) */
.card-common {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-common:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.card-common h3 {
    font-family: 'Rationale', sans-serif;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
    font-weight: 700;
}

.card-common p {
    font-size: 1.3rem;
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    overflow: hidden;
}
.card-icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 18px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    padding: 5px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive (Common for all pages) */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide for mobile, consider a hamburger menu */
    }
    .service-hero h1, .section-title {
        font-size: 2.5rem; /* Adjusted for mobile */
    }
    .service-hero p {
        font-size: 1.3rem; /* Adjusted for mobile */
    }
    .card-common h3, .footer-section h3 {
        font-size: 1.4rem; /* Adjusted for mobile */
    }
    .footer-section p {
        font-size: 1rem; /* Adjusted for mobile */
    }
    .logo {
        height: 72.9px; /* Consistent mobile logo height */
    }
    .logo img {
        max-width: 218.7px; /* Consistent mobile max width */
    }
}

/* Specific styles for the homepage */
.hero {
    /* Updated background image to backgound.jpeg with a linear gradient overlay */
    background: linear-gradient(135deg, rgba(102,126,234,0.7) 0%, rgba(118,75,162,0.7) 50%, rgba(240,147,251,0.7) 100%),
                url('backgound.jpeg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    /* Removed the SVG grid as a background image is now used */
    content: none; 
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-family: 'Rationale', sans-serif; /* Rationale for H1 */
    font-size: 4.5rem; /* Slightly larger for impact */
    margin-bottom: 1rem;
    animation: slideInUp 1s ease-out;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.5); /* Stronger shade for H1 */
    font-weight: 700; /* Ensure it's bold */
}

.hero p {
    font-size: 1.8rem; /* Larger for Solitreo */
    margin-bottom: 2rem;
    animation: slideInUp 1s ease-out 0.3s both;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    padding: 18px 45px; /* Increased padding */
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.3rem; /* Increased font size */
    transition: all 0.3s ease;
    animation: slideInUp 1s ease-out 0.6s both;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    font-family: 'Rationale', sans-serif; /* Rationale for buttons */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2); /* Shade for buttons */
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: floatRandom 15s infinite ease-in-out;
}

.floating-element:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: -2s;
}

.floating-element:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.floating-element:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 80%;
    left: 20%;
    animation-delay: -8s;
}

@keyframes floatRandom {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(-30px) translateX(20px) rotate(90deg); }
    50% { transform: translateY(-10px) translateX(-15px) rotate(180deg); }
    75% { transform: translateY(-40px) translateX(10px) rotate(270deg); }
}

/* Sections */
section {
    padding: 80px 0;
}

/* Highlighted Services */
.highlight-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    text-decoration: none; /* Ensure link doesn't have underline */
    color: inherit; /* Inherit text color */
    display: block; /* Make the whole card clickable */
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.highlight-card h3 {
    font-family: 'Rationale', sans-serif; /* Rationale for H3 */
    margin-bottom: 0.5rem;
    color: #333;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
    font-size: 1.6rem; /* Increased font size */
}
.highlight-card p {
    font-size: 1.3rem; /* Adjusted for Tinos */
    color: #666;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    overflow: hidden; /* Ensure image fits */
}
.highlight-icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 15px; /* Match parent border-radius */
    background: linear-gradient(45deg, #667eea, #764ba2); /* Add background to icon for consistency */
    padding: 5px;
}


/* About Section (Homepage Snippet) */
.about-home {
    background: #f8f9fa;
    padding: 80px 0;
}

.about-home-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.about-home-text {
    font-size: 1.3rem; /* Increased font size */
    line-height: 1.9;
}

.about-home-image {
    height: 300px;
    background: linear-gradient(45deg, rgba(102,126,234,0.1), rgba(118,75,162,0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #667eea;
    overflow: hidden; /* Ensure image fits */
}
.about-home-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the area, crop if necessary */
    border-radius: 20px; /* Match parent border-radius */
}

/* Why Choose Us Section */
.why-choose-us-home {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

.why-choose-us-home h2 {
    font-family: 'Rationale', sans-serif; /* Rationale for H2 */
    color: white; /* Ensure title is white on colored background */
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
}

.reason-list-home {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.reason-list-home li {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.reason-list-home li:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.reason-list-home li h3 {
    font-family: 'Rationale', sans-serif; /* Rationale for H3 */
    margin-bottom: 0.8rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
    font-size: 1.6rem; /* Increased font size */
}

/* Call to Action Section (Bottom) */
.cta-bottom-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.cta-bottom-section h2 {
    font-family: 'Rationale', sans-serif; /* Rationale for H2 */
    font-size: 3rem; /* Increased font size */
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 45px; /* Increased padding */
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.3rem; /* Increased font size */
    transition: all 0.3s ease;
    animation: slideInUp 1s ease-out 0.6s both;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    font-family: 'Rationale', sans-serif; /* Rationale for buttons */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2); /* Shade for buttons */
}

.cta-btn:hover {
    background: white;
    color: #f5576c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}


/* Specific styles for the services page */
.services-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); /* Consistent with other hero sections */
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.intro-paragraph {
    text-align: center;
    max-width: 800px; /* Adjusted max-width to allow 2 lines on larger screens */
    margin: 0 auto 3rem;
    font-size: 2.6rem; /* Doubled font size */
    line-height: 1.3; /* Adjusted line height for large text */
}

/* Main Services Grid Section */
#all-services {
    background: linear-gradient(135deg, #f8f9fa 0%, #e2e6ea 100%); /* Lighter gradient background */
    padding: 80px 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-card h3 {
    font-family: 'Rationale', sans-serif; /* Rationale for H3 */
    margin-bottom: 0.5rem;
    color: #333;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
    font-size: 1.6rem; /* Increased font size */
}

.service-card p {
    font-size: 1.3rem; /* Adjusted for Tinos */
    line-height: 1.6; /* Reduced line height for service card paragraphs */
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    color: #667eea;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: 'Rationale', sans-serif; /* Rationale for link text */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1); /* Shade for links */
    font-size: 1.1rem; /* Increased font size */
}

.service-link:hover {
    color: #764ba2;
    transform: translateX(5px);
}

/* Specific styles for the about page */
.about {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    padding-top: 180px; /* Adjusted padding-top to account for larger header */
}

.about .section-title {
    color: #fff; /* Changed for white background */
}

.about .section-title::after {
    background: #fff;
}

.about h2 {
    font-family: 'Rationale', sans-serif; /* Rationale for H2 */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
    font-size: 2rem; /* Increased font size */
}

.about-content {
    display: block; /* Changed to block to allow vertical flow */
    gap: 3rem; /* Kept for reference, but won't apply to block */
    align-items: center; /* Kept for reference */
    text-align: left;
}

.about-text {
    font-size: 1.3rem; /* Increased font size to match body font */
    line-height: 1.9; /* Adjusted line height */
}

.about-image-container { /* New container for the image to manage its display */
    margin-top: 3rem; /* Space between text and image */
    margin-bottom: 3rem; /* Space after image */
    text-align: center; /* Center the image if it's smaller than full width */
}

.about-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2); /* Added shadow for depth */
}

/* Specific styles for the SAP Consulting page */
.sap-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #4834d4 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.sap-hero h1 {
    font-family: 'Rationale', sans-serif; /* Rationale for H1 */
    font-size: 4.5rem; /* Increased font size */
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
}

.sap-hero p {
    font-size: 1.5rem; /* Increased font size */
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Image Section */
.image-section {
    padding: 60px 0;
    text-align: center;
    background: #f0f2f5; /* Light background for contrast */
}
.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.image-section img:hover {
    transform: scale(1.02);
}

/* SAP Services Grid */
.sap-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.sap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sap-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #667eea, #764ba2, #4834d4);
}

.sap-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.sap-card h3 {
    font-family: 'Rationale', sans-serif; /* Rationale for H3 */
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.6rem; /* Increased font size */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
}

.sap-card p {
    font-size: 1.3rem; /* Adjusted for Tinos */
}

.sap-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    overflow: hidden;
}
.sap-icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 18px;
    background: linear-gradient(45deg, #667eea, #764ba2); /* Add background to icon for consistency */
    padding: 5px;
}

.sap-card ul {
    list-style: none;
    margin-top: 1rem;
}

.sap-card li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 20px;
    color: #666;
}

.sap-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Benefits Grid */
.sap-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.sap-benefits h2 {
    font-family: 'Rationale', sans-serif; /* Rationale for H2 */
    color: white; /* Ensure title is white on colored background */
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.benefit-item h3 {
    font-family: 'Rationale', sans-serif; /* Rationale for H3 */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
    font-size: 1.6rem; /* Increased font size */
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Process Timeline */
.sap-process {
    padding: 80px 0;
}

.sap-process h2 {
    font-family: 'Rationale', sans-serif; /* Rationale for H2 */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
}

.process-timeline {
    position: relative;
    margin-top: 3rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    margin-bottom: 3rem;
    align-items: center;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 0 2rem;
    position: relative;
}

.process-content h3 {
    font-family: 'Rationale', sans-serif; /* Rationale for H3 */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
    font-size: 1.6rem; /* Increased font size */
}

.process-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-family: 'Rationale', sans-serif; /* Rationale for H2 */
    font-size: 3rem; /* Increased font size */
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 45px; /* Increased padding */
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.3rem; /* Increased font size */
    transition: all 0.3s ease;
    font-family: 'Rationale', sans-serif; /* Rationale for buttons */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2); /* Shade for buttons */
}

.cta-btn:hover {
    background: white;
    color: #f5576c;
    transform: translateY(-3px);
}

/* Specific styles for the ERP Consulting page */
.erp-hero {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.erp-hero h1 {
    font-family: 'Rationale', sans-serif; /* Rationale for H1 */
    font-size: 4.5rem; /* Increased font size */
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
}

.erp-hero p {
    font-size: 1.5rem; /* Increased font size */
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* ERP Services Grid (reusing .sap-services and .sap-grid for common structure) */
.sap-card::before {
    background: linear-gradient(45deg, #11998e, #38ef7d); /* Specific to ERP */
}

.sap-icon {
    box-shadow: 0 8px 25px rgba(17, 153, 142, 0.3); /* Specific to ERP */
}
.sap-icon img {
    background: linear-gradient(45deg, #11998e, #38ef7d); /* Add background to icon for consistency */
}

.sap-card li::before {
    color: #11998e; /* Specific to ERP */
}

/* Stats Section */
.stats-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.stats-section h2 {
    font-family: 'Rationale', sans-serif; /* Rationale for H2 */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-family: 'Rationale', sans-serif; /* Rationale for stat numbers */
    font-size: 3.5rem; /* Increased font size */
    font-weight: bold;
    color: #11998e; /* Specific to ERP */
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1); /* Colored shade */
}

/* Specific styles for the IT Consulting page */
.it-hero {
    background: linear-gradient(135deg, #fc466b 0%, #3f5efb 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.it-hero h1 {
    font-family: 'Rationale', sans-serif; /* Rationale for H1 */
    font-size: 4.5rem; /* Increased font size */
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
}

.it-hero p {
    font-size: 1.5rem; /* Increased font size */
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Specialization Grid (reusing .sap-services for common structure) */
.specialization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.spec-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #fc466b, #3f5efb); /* Specific to IT Consulting */
}

.spec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.spec-card h3 {
    font-family: 'Rationale', sans-serif; /* Rationale for H3 */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
    font-size: 1.6rem; /* Increased font size */
}

.spec-card p {
    font-size: 1.3rem; /* Adjusted for Tinos */
}

.spec-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(252, 70, 107, 0.3); /* Specific to IT Consulting */
    overflow: hidden;
}
.spec-icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 50%;
    background: linear-gradient(45deg, #fc466b, #3f5efb); /* Add background to icon for consistency */
    padding: 5px;
}

/* Methodology Section */
.methodology-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.methodology-section h2 {
    font-family: 'Rationale', sans-serif; /* Rationale for H2 */
    color: white; /* Ensure title is white on colored background */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.method-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.method-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.method-card h3 {
    font-family: 'Rationale', sans-serif; /* Rationale for H3 */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
    font-size: 1.6rem; /* Increased font size */
}

/* Specific styles for the Web Development page */
.web-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.web-hero h1 {
    font-family: 'Rationale', sans-serif; /* Rationale for H1 */
    font-size: 4.5rem; /* Increased font size */
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
}

.web-hero p {
    font-size: 1.5rem; /* Increased font size */
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Web Development Services Grid (reusing .sap-services and .sap-grid for common structure) */
.web-dev-services { /* Renamed for clarity */
    padding: 80px 0;
    background: #f8f9fa;
}

.web-dev-grid { /* Renamed for clarity */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.web-dev-card { /* Renamed for clarity */
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.web-dev-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb); /* Specific to Web Dev */
}

.web-dev-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.web-dev-card h3 {
    font-family: 'Rationale', sans-serif; /* Rationale for H3 */
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.6rem; /* Increased font size */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
}

.web-dev-card p {
    font-size: 1.3rem; /* Adjusted for Tinos */
}

.web-dev-icon { /* Renamed for clarity */
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3); /* Specific to Web Dev */
    overflow: hidden;
}
.web-dev-icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 18px;
    background: linear-gradient(45deg, #667eea, #764ba2); /* Add background to icon for consistency */
    padding: 5px;
}

.web-dev-card ul {
    list-style: none;
    margin-top: 1rem;
}

.web-dev-card li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 20px;
    color: #666;
}

.web-dev-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea; /* Specific to Web Dev */
    font-weight: bold;
}

/* Tech Showcase (for Web Dev specific stack) */
.tech-showcase {
    padding: 80px 0;
    background: #f8f9fa;
}

.tech-showcase h2 {
    font-family: 'Rationale', sans-serif; /* Rationale for H2 */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.tech-category h3 {
    font-family: 'Rationale', sans-serif; /* Rationale for H3 */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
    font-size: 1.6rem; /* Increased font size */
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tech-tag {
    background: linear-gradient(45deg, #667eea, #764ba2); /* Specific to Web Dev */
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 1rem; /* Increased font size */
    font-weight: 500;
    font-family: 'Rationale', sans-serif; /* Rationale for tech tags */
}

/* Specific styles for the Technologies page */
.tech-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding-top: 120px; /* Adjusted for fixed header */
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.tech-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.tech-item h3 {
    font-family: 'Rationale', sans-serif; /* Rationale for H3 */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
    font-size: 1.6rem; /* Increased font size */
}

.tech-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.2rem;
    overflow: hidden;
}
.tech-logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 20px;
    background: linear-gradient(45deg, #667eea, #764ba2); /* Add background to logo for consistency */
    padding: 5px;
}

/* Sliding Logos Section */
.sliding-logos-section {
    padding: 40px 0;
    background: #e9ecef;
    overflow: hidden; /* This is crucial for seamless sliding */
    /* Removed white-space: nowrap from here as flexbox handles it */
    position: relative;
    box-shadow: inset 0 5px 10px rgba(0,0,0,0.05), inset 0 -5px 10px rgba(0,0,0,0.05);
}

.sliding-logos-section h2 {
    font-family: 'Rationale', sans-serif; /* Rationale for H2 */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
}

.logo-slide {
    display: flex; /* Changed from inline-block to flex for better control */
    animation: slide-left 40s linear infinite; /* Adjust duration for speed */
    /* Ensure the total width of .logo-slide is exactly double the width of one set of logos */
    /* This can be achieved by duplicating the logo set once in HTML and using flex */
}

.logo-slide img {
    flex-shrink: 0; /* Prevents images from shrinking within the flex container */
    height: 80px; /* Adjust logo height */
    margin: 0 40px; /* Space between logos */
    /* vertical-align: middle; no longer relevant with flex */
    transition: filter 0.3s ease-in-out;
}

.logo-slide img:hover {
    filter: grayscale(0%) opacity(1); /* Keep hover effect for color */
}

@keyframes slide-left {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); } /* Animates half the width of the duplicated content */
}

/* To make the slide seamless, duplicate the content */
.logo-slide:hover {
    animation-play-state: paused; /* Pause on hover */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
    .tech-item h3 {
        font-size: 1.4rem; /* Adjusted for mobile */
    }
    .sliding-logos-section h2 {
        font-size: 2.5rem; /* Adjusted for mobile */
    }
    .logo-slide img {
        height: 60px; /* Smaller logos on mobile */
        margin: 0 20px;
    }
    .logo-slide {
        animation-duration: 30s; /* Faster slide on mobile */
    }
}

/* Specific styles for the Contact Us page */
.contact-section {
    padding: 80px 0;
    padding-top: 180px; /* Adjusted padding-top to account for larger header */
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info, .contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: left;
}

.contact-info h3, .contact-form-container h3 {
    font-family: 'Rationale', sans-serif; /* Rationale for H3 */
    color: #667eea;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
    font-size: 1.6rem; /* Increased font size */
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-info a {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.contact-form input:not([type="file"]),
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Tinos', serif; /* Tinos for form inputs */
    font-size: 1.1rem; /* Slightly larger for Tinos */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type="file"] {
    width: 100%;
    padding: 15px 0; /* Adjust padding for file input */
    margin-bottom: 20px;
    border: none; /* File input typically doesn't have a border */
    border-radius: 0;
    font-family: 'Tinos', serif; /* Tinos for form inputs */
    font-size: 1.1rem; /* Slightly larger for Tinos */
    color: #666;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
    outline: none;
}

.contact-form button {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 18px 45px; /* Increased padding */
    border: none;
    border-radius: 50px;
    font-size: 1.3rem; /* Increased font size */
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    font-family: 'Rationale', sans-serif; /* Rationale for buttons */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2); /* Shade for buttons */
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    opacity: 0.9;
}

.social-icons {
    margin-top: 2rem;
    text-align: center;
}

.social-icons a {
    display: inline-block;
    margin: 0 15px;
    font-size: 2rem;
    color: #667eea;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #764ba2;
    transform: scale(1.1);
}

/* Map Section (now part of contact-info) */
.contact-info .map-container {
    width: 100%;
    max-width: 100%; /* Ensure it fits within the contact-info card */
    margin-top: 2rem; /* Space from contact info text */
    height: 350px; /* Fixed height for the map */
    border-radius: 15px;
    overflow: hidden; /* Hide overflow for rounded corners */
    box-shadow: 0 5px 20px rgba(0,0,0,0.1); /* Lighter shadow for embedded map */
}
.contact-info .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Specific styles for the Staff Augmentation page */
.staff-augmentation-hero {
    background: linear-gradient(135deg, #20bf55 0%, #01baef 100%); /* New gradient for Staff Augmentation */
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.staff-augmentation-hero h1 {
    font-family: 'Rationale', sans-serif; /* Rationale for H1 */
    font-size: 4.5rem; /* Increased font size */
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
}

.staff-augmentation-hero p {
    font-size: 1.5rem; /* Increased font size */
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Staff Augmentation Services Grid */
.staff-augmentation-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.staff-augmentation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.staff-augmentation-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.staff-augmentation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #20bf55, #01baef); /* Specific to Staff Augmentation */
}

.staff-augmentation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.staff-augmentation-card h3 {
    font-family: 'Rationale', sans-serif; /* Rationale for H3 */
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.6rem; /* Increased font size */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
}

.staff-augmentation-card p {
    font-size: 1.3rem; /* Adjusted for Tinos */
}

.staff-augmentation-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(32, 191, 85, 0.3); /* Specific to Staff Augmentation */
    overflow: hidden;
}
.staff-augmentation-icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 18px;
    background: linear-gradient(45deg, #20bf55, #01baef); /* Add background to icon for consistency */
    padding: 5px;
}

.staff-augmentation-card ul {
    list-style: none;
    margin-top: 1rem;
}

.staff-augmentation-card li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 20px;
    color: #666;
}

.staff-augmentation-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #20bf55; /* Specific to Staff Augmentation */
    font-weight: bold;
}

/* Talent Specializations */
.talent-specializations {
    padding: 80px 0;
    background: #f0f2f5;
}

.talent-specializations h2 {
    font-family: 'Rationale', sans-serif; /* Rationale for H2 */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
}

.talent-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.talent-category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.talent-category-card h3 {
    font-family: 'Rationale', sans-serif; /* Rationale for H3 */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05); /* Colored shade */
    font-weight: 700; /* Ensure it's bold */
    font-size: 1.6rem; /* Increased font size */
}

.talent-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.talent-tag {
    background: linear-gradient(45deg, #20bf55, #01baef); /* Specific to Staff Augmentation */
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 1rem; /* Increased font size */
    font-weight: 500;
    font-family: 'Rationale', sans-serif; /* Rationale for tech tags */
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 4rem 0; /* Increased padding */
    border-top: 5px solid linear-gradient(135deg, #667eea, #764ba2); /* Subtle top border */
    box-shadow: 0 -10px 30px rgba(0,0,0,0.2); /* Added shadow for depth */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Forces three columns */
    gap: 2.5rem; /* Increased gap */
    margin-bottom: 2.5rem; /* Increased margin */
}

.footer-section {
    padding: 1rem; /* Added padding to sections */
}

.footer-section h3 {
    font-family: 'Rationale', sans-serif; /* Stylish font */
    margin-bottom: 1.2rem; /* Increased margin-bottom */
    color: #88b0f0; /* Lighter shade of blue for better contrast */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3); /* Stronger shade */
    font-weight: 700; /* Ensure it's bold */
    font-size: 1.8rem; /* Increased font size */
    letter-spacing: 0.05em; /* Added letter spacing */
}

.footer-section p {
    font-size: 1.2rem; /* Increased font size */
    line-height: 1.8; /* Adjusted line height for better readability */
    margin-bottom: 0.5rem; /* Space between paragraphs */
    color: #e0e0e0; /* Slightly lighter text for readability */
}

.footer-section a { /* Style for footer links */
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff; /* White on hover for stronger contrast */
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(255,255,255,0.5); /* Glowing effect on hover */
}

/* Mobile Responsive for Footer */
@media (max-width: 768px) {
    footer {
        padding: 3rem 0; /* Slightly less padding on mobile */
    }
    .footer-content {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        gap: 1.5rem; /* Reduced gap on mobile */
    }
    .footer-section h3 {
        font-size: 1.6rem; /* Adjusted for mobile */
    }
    .footer-section p {
        font-size: 1.1rem; /* Adjusted for mobile */
    }
}
