/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #06b6d4;
    /* Cyan/Teal matching Logo */
    --primary-dark: #0891b2;
    --secondary-color: #94a3b8;
    --dark-bg: #0f172a;
    /* Slate 900 */
    --darker-bg: #020617;
    /* Slate 950 */
    --card-bg: rgba(30, 41, 59, 0.7);
    --text-color: #e2e8f0;
    --gradient-accents: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-anim {
    animation: float 6s ease-in-out infinite;
}

.glow-effect {
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
    transition: all 0.3s ease;
}

.glow-effect:hover {
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.8);
}

/* Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-darker {
    background-color: var(--darker-bg) !important;
}

.text-light-50 {
    color: rgba(255, 255, 255, 0.6) !important;
}

.section-padding {
    padding: 100px 0;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.heading-line {
    width: 60px;
    height: 4px;
    margin-top: 15px;
    border-radius: 2px;
}

/* Navbar */
.navbar {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    margin-right: 15px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 40%),
        radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.1), transparent 40%);
}

.hero-img-placeholder {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Glassmorphism Cards */
.glass-card,
.service-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Carousel */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: var(--primary-color);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    background-size: 50%;
}

/* Icon Boxes */
.icon-box {
    width: 60px;
    height: 60px;
}

.bg-primary-soft {
    background-color: rgba(59, 130, 246, 0.1);
}

.bg-success-soft {
    background-color: rgba(34, 197, 94, 0.1);
}

.bg-info-soft {
    background-color: rgba(6, 182, 212, 0.1);
}

.bg-danger-soft {
    background-color: rgba(239, 68, 68, 0.1);
}

.bg-warning-soft {
    background-color: rgba(245, 158, 11, 0.1);
}

.bg-purple-soft {
    background-color: rgba(168, 85, 247, 0.1);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.23);
}

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

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Tech Section */
.grayscale-hover-color i {
    transition: all 0.3s ease;
}

.grayscale-hover-color i:hover {
    color: var(--primary-color) !important;
    transform: scale(1.1);
}

/* Portfolio */
.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item img {
    transition: transform 0.5s ease;
}

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

/* Testimonials */
.testimonial-card i.fa-quote-left {
    opacity: 0.1;
}

/* Contact */
.form-control:focus {
    background-color: var(--dark-bg);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}

/* Footer */
.social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: white !important;
}

.text-hover-primary:hover {
    color: var(--primary-color) !important;
}