body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #f8f9fa;
}

/* Floating Contact Modal Styles */

/* Get In Touch Button Hover Effect */
.open-contact-modal {
    background: #2563eb;
    color: #fff;
    border: none;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(37,99,235,0.08);
    transition: background 0.22s, box-shadow 0.22s, color 0.18s;
}
.open-contact-modal:hover, .open-contact-modal:focus {
    background: #1746a2;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(37,99,235,0.13), 0 1.5px 6px rgba(44,62,80,0.07);
    text-shadow: none;
}


/* Card Hover Animation for Services */
.card {
    position: relative;
    overflow: visible;
    transition: transform 0.22s cubic-bezier(.4,2,.6,1), box-shadow 0.22s cubic-bezier(.4,2,.6,1);
}
.card::before {
    content: '';
    position: absolute;
    inset: -3px;
    z-index: 0;
    border-radius: 1.1rem;
    background: linear-gradient(120deg, #2563eb, #06beb6, #f7971e, #ee0979, #2563eb);
    background-size: 300% 300%;
    opacity: 0;
    transition: opacity 0.25s, filter 0.25s;
    filter: blur(0px);
    pointer-events: none;
}
.card:hover::before, .card:focus-within::before {
    opacity: 1;
    filter: blur(5px);
    animation: cardGlow 2.5s linear infinite;
}
@keyframes cardGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.card:hover, .card:focus-within {
    transform: scale(1.045) translateY(-4px);
    box-shadow: 0 8px 32px rgba(44,62,80,0.18), 0 1.5px 6px rgba(44,62,80,0.07);
    z-index: 2;
}
.card > * {
    position: relative;
    z-index: 1;
}

/* Project Card Animation */
.project-card {
    position: relative;
    overflow: visible;
    transition: transform 0.22s cubic-bezier(.4,2,.6,1), box-shadow 0.22s cubic-bezier(.4,2,.6,1);
}
.project-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    z-index: 0;
    border-radius: 1.1rem;
    background: linear-gradient(120deg, #2563eb, #06beb6, #f7971e, #ee0979, #2563eb);
    background-size: 300% 300%;
    opacity: 0;
    transition: opacity 0.25s, filter 0.25s;
    filter: blur(0px);
    pointer-events: none;
}
.project-card:hover::before, .project-card:focus-within::before {
    opacity: 1;
    filter: blur(5px);
    animation: cardGlow 2.5s linear infinite;
}
.project-card:hover, .project-card:focus-within {
    transform: scale(1.045) translateY(-4px);
    box-shadow: 0 8px 32px rgba(44,62,80,0.18), 0 1.5px 6px rgba(44,62,80,0.07);
    z-index: 2;
}
.project-card > * {
    position: relative;
    z-index: 1;
}

.contact-modal-overlay {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 41, 59, 0.65);
    justify-content: center;
    align-items: center;
    transition: background 0.2s;
}
.contact-modal {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.13);
    padding: 2.5rem 1.8rem 1.5rem 1.8rem;
    max-width: 410px;
    width: 92vw;
    position: relative;
    animation: modalFadeIn 0.22s cubic-bezier(.4,2,.6,1) 1;
}
@keyframes modalFadeIn {
    from { transform: translateY(40px) scale(0.98); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}
.contact-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #2563eb;
    cursor: pointer;
    z-index: 2;
    transition: color 0.18s;
}
.contact-modal-close:hover, .contact-modal-close:focus {
    color: #1746a2;
}
@media (max-width: 540px) {
    .contact-modal {
        padding: 1.2rem 0.6rem 1rem 0.6rem;
        max-width: 97vw;
    }
}
body.modal-open {
    overflow: hidden;
}

.enhanced-about {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    color: #232323;
    letter-spacing: 0.01em;
    line-height: 1.7;
    font-size: 1.18rem;
}

.about-link {
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s;
}
.about-link:hover, .about-link:focus {
    color: #1746a2;
    text-decoration: underline;
}

header img {
    border: 4px solid #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.slide-text {
    display: inline-block;
    animation: slideLeftRight 2s ease-in-out infinite alternate;
  }
  
  @keyframes slideLeftRight {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-20px); }
  }
  
.card-title {
    font-weight: 600;
}

.get-in-touch-section {
    background: linear-gradient(135deg, #06beb6 0%, #48b1f3 100%);
    color: #fff;
    box-shadow: 0 4px 32px rgba(6,190,182,0.07);
    position: relative;
}
.get-in-touch-section .container {
    background: rgba(255,255,255,0.85);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 2.5rem 1.5rem;
    color: #222;
    max-width: 600px;
}
.get-in-touch-section h2, .get-in-touch-section p, .get-in-touch-email {
    color: #181818 !important;
    font-weight: 700;
    text-shadow: none;
}
/* Overridden by .get-in-touch-section .container styles above for contrast */
/* Overridden by .get-in-touch-section .container styles above for contrast */

.schedule-call-btn {
    border: 2px solid #000 !important;
}
.schedule-call-btn:hover, .schedule-call-btn:focus {
    border: none !important;
}

.get-in-touch-email {
    color: #2563eb !important;
    font-weight: 700;
    background: #fff;
    border-radius: 6px;
    padding: 0.5rem 1.2rem;
    display: inline-block;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(72,177,243,0.09);
}
.get-in-touch-email:hover {
    color: #06beb6;
    background: #fff;
    text-decoration: underline;
}
.social-icon-link {
    color: #fff !important;
    background: #06beb6 !important;
    border-radius: 50%;
    font-size: 2.3rem;
    margin: 0 0.5rem;
    transition: background 0.2s, color 0.2s;
    padding: 0.5rem 0.7rem;
    border: 2.5px solid #48b1f3;
    box-shadow: 0 2px 8px rgba(6,190,182,0.13);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.social-icon-link:hover, .social-icon-link:focus {
    background: #fff !important;
    color: #06beb6 !important;
    border-color: #06beb6;
    box-shadow: 0 4px 16px rgba(72,177,243,0.18);
}
.social-icon-link:hover {
    color: #fff;
}

    background: #2563eb;
    color: #fff;
}
.get-in-touch-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
}
.get-in-touch-section p {
    font-size: 1.08rem;
    color: #e0e8ff;
}
.get-in-touch-email {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 1.2rem;
}
.get-in-touch-email:hover {
    text-decoration: underline;
}
.social-icon-link {
    color: #fff;
    font-size: 2rem;
    margin: 0 0.5rem;
    transition: color 0.2s;
}
.social-icon-link:hover {
    color: #d1e0ff;
}

.hero-name {
    font-weight: 900;
    color: #2563eb;
    transition: color 0.2s;
    cursor: pointer;
}
.hero-name:hover {
    color: #1746a0;
}

.hero-logo-img {
    max-width: 290px;
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1.5rem;
}

.hero-logo-img {
    max-width: 340px;
    width: 100%;
    height: auto;
    display: block;
    background: none;
    margin-bottom: 1.5rem;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.navbar-brand img {
    height: 54px;
    width: auto;
    max-width: 180px;
    background: none;
    border-radius: 0 !important;
    box-shadow: none !important;
}

body {
    padding-top: 70px;
}

.navbar .navbar-brand, .navbar-nav .nav-link {
    color: #111 !important;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
    color: #2563eb !important;
}

.navbar .navbar-brand, .navbar-nav .nav-link {
    color: #111 !important;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
    color: #2563eb !important;
}

footer {
    background: #10172a;
    color: #fff;
    font-size: 1rem;
    padding: 1.3rem 0;
    border-top: 2px solid #2563eb;
    letter-spacing: 0.5px;
    text-align: center;
}
footer a, footer p {
    color: #fff !important;
}
footer a:hover {
    color: #48b1f3 !important;
    text-decoration: underline;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: #fff !important;
    border-bottom: 1.5px solid #e5e7eb;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.03);
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1.08rem;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}

.navbar .navbar-brand {
    color: #111 !important;
    font-weight: 900 !important;
    font-size: 2rem !important;
    letter-spacing: -1.5px;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    text-transform: uppercase;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    color: #111 !important;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: visible;
    transition: color 0.18s;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: 0.18em;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #2563eb, #06beb6, #f7971e, #ee0979, #2563eb);
    background-size: 200% 200%;
    opacity: 0;
    transform: scaleX(0.7);
    transition: opacity 0.22s, transform 0.22s, background-position 0.7s;
    z-index: 1;
    pointer-events: none;
}
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after, .navbar-nav .nav-link:focus::after {
    opacity: 1;
    transform: scaleX(1);
    animation: navGlow 2.2s linear infinite;
}
@keyframes navGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active, .navbar-nav .nav-link:focus {
    color: #2563eb !important;
}
    margin-left: 0.7rem;
    margin-right: 0.7rem;
    padding: 0.65rem 1.1rem;
    transition: color 0.2s, background 0.2s;
    border-radius: 8px;
    font-family: 'Segoe UI', Arial, sans-serif;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
    color: #2563eb !important;
    background: none !important;
    text-decoration: none !important;
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        margin-left: 0;
        margin-right: 0;
        padding: 0.7rem 1rem;
    }
}


.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
    color: #2563eb !important;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
    color: #2563eb !important;
}
    background: #60aaff !important;
    color: #fff !important;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1.08rem;
    z-index: 100;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
    color: #f3c6e9 !important;
}
    background: #111 !important;
    color: #fff;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1.08rem;
    z-index: 100;
}
.navbar .navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
}
.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    transition: color 0.2s;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
    color: #f3c6e9;
}

    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1.08rem;
    z-index: 100;
}
.navbar .navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: #222;
}
.navbar-nav .nav-link {
    color: #444;
    font-weight: 500;
    transition: color 0.2s;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
    color: #2563eb;
}

.hero-section {
    min-height: 80vh;
    background: #f7f9fb;
    display: flex;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #222;
    line-height: 1.15;
}

.hero-name {
    color: #2563eb;
    font-size: 2.8rem;
    font-weight: 900;
    display: block;
    margin-top: 0.2rem;
}

.hero-role {
    color: #f3c6e9;
    font-weight: 500;
    font-size: 1.35rem;
}

    color: #444;
    font-weight: 500;
    font-size: 1.35rem;
}

.hero-desc {
    color: #666;
    font-size: 1.13rem;
    max-width: 480px;
}

.hero-btn {
    font-size: 1.1rem;
    padding: 0.75rem 2.2rem;
    border-radius: 8px;
    font-weight: 600;
    background: #f3c6e9;
    color: #181818;
    border: none;
    transition: background 0.2s, color 0.2s;
}
.hero-btn:hover, .hero-btn:focus {
    background: #fff;
    color: #181818;
    border: 1.5px solid #f3c6e9;
}

    font-size: 1.1rem;
    padding: 0.75rem 2.2rem;
    border-radius: 8px;
    font-weight: 600;
}

.hero-img-large {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 18px rgba(0,0,0,0.09);
    background: #fff;
}

.hero-img-wrapper {
    background: white;
    border-radius: 50%;
    box-shadow: 0 6px 32px rgba(0,0,0,0.08);
    padding: 18px;
    display: inline-block;
}

@media (max-width: 991px) {
    .hero-img-large {
        width: 220px;
        height: 220px;
    }
    .hero-title, .hero-name {
        font-size: 2.1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .hero-img-large {
        width: 150px;
        height: 150px;
    }
    .hero-title, .hero-name {
        font-size: 1.45rem;
    }
    .navbar .navbar-brand {
        font-size: 1.1rem;
    }
}

    min-height: 80vh;
    background: #f7f9fb;
    display: flex;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero-section .display-4 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #222;
}

.hero-section .text-primary {
    color: #2563eb !important;
}

.hero-section h3 {
    color: #444;
    font-weight: 500;
}

.hero-section .fs-5 {
    color: #666;
}

.hero-img-wrapper {
    background: white;
    border-radius: 50%;
    box-shadow: 0 6px 32px rgba(0,0,0,0.08);
    padding: 18px;
    display: inline-block;
}

.hero-img {
    width: 270px;
    height: 270px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 18px rgba(0,0,0,0.09);
}

.hero-section .btn {
    font-size: 1.1rem;
    padding: 0.75rem 2.2rem;
    border-radius: 8px;
    font-weight: 600;
}

.hero-section .btn-outline-primary {
    border: 2px solid #f3c6e9 !important;
    color: #f3c6e9 !important;
    background: transparent !important;
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
    background: #f3c6e9 !important;
    color: #181818 !important;
}

    border: 2px solid #2563eb;
    color: #2563eb;
}

.hero-section .btn-outline-primary:hover {
    background: #2563eb;
    color: #fff;
}

@media (max-width: 768px) {
    .display-4 {
        font-size: 2.2rem;
    }
    header img {
        width: 100px;
        height: 100px;
    }
}
