:root {
    --primary-color: #1500ff; /* Primary Bootstrap Blue */
    --secondary-color: #ffffff;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --font-family-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

body {
    font-family: var(--font-family-sans);
    color: var(--dark-color);
    line-height: 1.6;
}
 
#type-text::after {
  content: '|';
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

/* Override Bootstrap Primary Color for the entire theme */
.text-primary { 
    color: var(--primary-color) !important;
 }
.btn-primary { 
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: background-color 0.3s, border-color 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3; /* Darker blue on hover */
    border-color: #0056b3;
}

/* Initial transparent/dark navbar state */
.navbar-dark {
    background-color: rgba(33, 37, 41, 0.9); /* Semi-transparent dark for start */
    backdrop-filter: blur(5px); /* Modern frosted glass effect */
    transition: all 0.4s ease;
}

/* Navbar Scrolled State */
.navbar-scrolled {
    background-color: var(--dark-color) !important; /* Solid dark background after scroll */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Navbar Link Active State Styling */
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}


#hero {
    /* Large, visually striking background */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('images/WhatsApp\ Image\ 2025-10-06\ at\ 17.13.29_37149114.jpg') center center no-repeat;
    background-size: cover;
    /* Optional: Ensure text stands out */
    text-shadow: 0 2px 4px rgba(0, 0, 0.5);
}

.tagline {
    letter-spacing: 0.2rem;
}


.portfolio-item {
    overflow: hidden;
    /* Optional: Transition for hover effect */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.portfolio-item:hover {
    transform: translateY(-5px); /* Lift card slightly */
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.portfolio-item img {
    height: 200px; /* Fixed height for image consistency */
    object-fit: cover;
}

.btn-social-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%; /* Circle shape */
    transition: background-color 0.3s;
}

.btn-social-icon:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white !important;
}

/* --- Contact Section Styling --- */
      .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Two equal columns */
        gap: 2rem;
      }

      .contact-form-container,
      .contact-info-container {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }

      .form-group {
        margin-bottom: 1rem;
      }

      .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
      }

      .form-group input,
      .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-family: inherit;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
      }

      .form-group input:focus,
      .form-group textarea:focus {
        border-color: var(--primary-color);
        outline: none;
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
      }

      .btn-submit {
        width: 100%;
        padding: 12px;
        font-size: 1.1rem;
        border-radius: 8px;
      }

      .contact-info-container p {
        margin-bottom:1.5rem;
      }
