/* Custom styles */
.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

.font-opensans {
    font-family: 'Open Sans', sans-serif;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    animation: slideIn 0.5s ease forwards;
}

/* Service card hover effects */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #4fc3f7;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Custom button styles */
.btn-primary {
    background: #4fc3f7;
    color: #181818;
    border-radius: 0.5rem;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: background 0.2s;
    border: none;
}

.btn-secondary {
    background: #e3f6fd;
    color: #0288d1;
    border-radius: 0.5rem;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: background 0.2s;
    border: none;
}

.btn-secondary:hover {
    background: #b2ebf2;
    color: #0288d1;
}

/* Form styles */
.form-input {
    @apply mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-red-500 focus:ring-red-500;
}

.form-label {
    @apply block text-sm font-medium text-gray-700;
    color: #0288d1;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .container {
        @apply px-4;
    }
}

/* Geometric/Low-poly background for header */
.header-geo-bg {
    background: linear-gradient(135deg, #222 60%, #4fc3f7 100%);
    background-size: cover;
    background-repeat: no-repeat;
}

/* Card style for sections */
.card {
    background: #181818;
    border-radius: 1rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-left: 6px solid #4fc3f7;
    color: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Blue accent text */
.text-blue-accent {
    color: #4fc3f7;
}

/* Update nav and footer links */
nav a, footer a {
    transition: color 0.2s;
}

/* Remove the !important from hover state */
nav a:hover, footer a:hover {
    color: #4fc3f7;
}

/* Add specific active state styles */
nav a.active {
    color: #4fc3f7 !important;
    font-weight: 600;
}

/* Ensure active state is not overridden by hover */
nav a.active:hover {
    color: #4fc3f7 !important;
}

/* Update service card for dark theme */
body.dark .service-card {
    background: #23272a;
    color: #fff;
    border-left: 4px solid #4fc3f7;
}
.service-card h3 {
    color: #4fc3f7;
}
.service-card ul li span {
    color: #4fc3f7;
}

/* Headings and highlights */
h1, h2, h3, h4, h5, h6, .highlight {
    color: #4fc3f7;
}

/* Form focus and accent */
input:focus, textarea:focus, select:focus {
    border-color: #4fc3f7 !important;
    box-shadow: 0 0 0 1px #4fc3f7 !important;
}

/* Custom Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Custom Utility Classes */
.animate-fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

.animate-slide-up {
    animation: slideUp 0.5s ease-out;
}

/* Hero Section Styles */
.hero-gradient {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
}

/* Testimonial Styles */
.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Contact Form Styles */
.form-input {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Custom Button Styles */
.btn-primary {
    @apply bg-blue-600 text-white px-6 py-3 rounded-md font-bold font-montserrat transition-all duration-200;
}

.btn-primary:hover {
    @apply bg-blue-700 transform -translate-y-0.5 shadow-lg;
}

/* Image Hover Effects */
.img-hover-zoom {
    overflow: hidden;
}

.img-hover-zoom img {
    transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.05);
}

/* Custom Section Spacing */
.section-spacing {
    @apply py-16 md:py-24 px-6 md:px-12;   /* ← added horizontal padding */
}

/* Custom Container Widths */
.content-width {
    @apply max-w-7xl mx-auto px-4 sm:px-6 lg:px-8;
}

/* Custom Grid Layouts */
.grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Custom Text Styles */
.text-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Custom Border Styles */
.border-gradient {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) border-box;
} 