/* General Styles */
:root {
    --primary: #4a6bdf;
    --primary-light: #e8ecfa;
    --secondary: #6c757d;
    --light: #f8f9fa;
    --dark: #212529;
    --white: #ffffff;
    --facebook: #3b5998;
    --instagram: #e1306c;
    --twitter: #1da1f2;
    --linkedin: #0077b5;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn {
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #3a5bd0;
    border-color: #3a5bd0;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
}

/* Hero Section */
.hero-section {
    background-color: var(--primary);
    padding: 5rem 0;
}

/* Icon Box */
.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Project Cards */
.project-card {
    width: 100%; /* or a fixed width if you want */
    height: 300px; /* choose the height you want */
    overflow: hidden;
    position: relative;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures image fills without distortion */
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-info {
    color: var(--white);
    text-align: center;
    padding: 1rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-card:hover img {
    transform: scale(1.05);
}

.eye-icon {
    margin-top: 10px;
    font-size: 24px;
    color: var(--primary);
    background: rgba(0,0,0,0.6);
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s ease;
}

.eye-icon:hover {
    background: #fff;
    color: #000;
}

/* Process Steps */
.process-step {
    padding: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Social Icons */
.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.bg-facebook {
    background-color: var(--facebook);
}

.bg-instagram {
    background-color: var(--instagram);
}

.bg-twitter {
    background-color: var(--twitter);
}

.bg-linkedin {
    background-color: var(--linkedin);
}

.social-icon:hover {
    transform: translateY(-3px);
}

/* Testimonials */
.testimonial-card {
    border-radius: 0.5rem;
}

/* Contact Form */
#contactForm .form-control, 
#contactForm .form-select {
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
}

@media (max-width: 768px){
    #contactForm button{
        align-items: center;
    }
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
}

footer a:hover {
    color: var(--primary-light);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
        text-align: center;
    }
    
    .hero-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .page-header {
        padding: 3rem 0;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Utility Classes */
.rounded {
    border-radius: 0.5rem !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.bg-primary-light {
    background-color: var(--primary-light);
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

/* GLightbox Overrides */
.gslide-title {
    font-size: 1.25rem;
    margin-top: 1rem;
}

.gslide-desc {
    font-size: 0.9rem;
    color: var(--secondary);
}