/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* Visually Hidden (for screen readers only) */
.visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

/* Fix for awkward nav at 1032px to 1178px width */
@media (min-width: 1031px) and (max-width: 1178px) {
    .nav-container {
        padding: 0.5rem 0.7rem;
    }
    .nav-menu {
        gap: 1rem;
    }
    .nav-link {
        font-size: 1rem;
        padding: 0.3rem 0;
    }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e1f26;
    /* Deep charcoal – grounded, modern, professional */
    --secondary-color: #00b4d8;
    /* Bright cyan – evokes energy, tech, innovation */
    --accent-color: #ff4d6d;
    /* Soft red-pink – contrast pop, magnetic flair */

    --text-dark: #0f0f0f;
    /* Almost black – high contrast readability */
    --text-light: #ffffff;
    /* White – clean, modern */
    --text-gray: #8a8a8a;
    /* Neutral text for secondary content */

    --bg-dark: #121212;
    /* Rich dark background for sleek sections */
    --bg-light: #f9f9f9;
    /* Near-white for bright areas and contrast */
    --bg-section: #1f1f1f;
    /* For feature sections and panels */

    --border-color: #2e2e2e;
    /* Subtle but visible divider/border lines */
    --shadow: 0 10px 30px rgba(0, 180, 216, 0.1);
    /* Slight glow, futuristic */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ----------------------------------------------------------END OF RESET AND BASE---------------------------------------------------------------*/
/* ----------------------------------------------------------START OF TYPOGRAPHY---------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

/* ----------------------------------------------------------END OF TYPOGRAPHY---------------------------------------------------------------*/
/* ----------------------------------------------------------START OF NAVIGATION---------------------------------------------------------------*/
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo h2 {
    color: var(--text-light);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-decoration: none;
    margin-right: 2rem;
    line-height: 1.1;
}

/* Logo Animation Styles */
.logo-animated {
    overflow: hidden;
    display: inline-block;
    position: relative;
    padding: 0 0;
    text-align: left;
    color: var(--text-light);
}

.logo-animated span {
    display: inline-block;
    color: var(--text-light);
}

.letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px) translateX(-20px);
    animation: slideInLetter 0.8s ease forwards;
    color: var(--text-light);
}

.letter.first-letter {
    color: var(--secondary-color);
}

.letter.space {
    width: 0.3em;
}

@keyframes slideInLetter {
    0% {
        opacity: 0;
        transform: translateY(50px) translateX(-20px);
    }
    60% {
        opacity: 0.7;
        transform: translateY(-5px) translateX(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

.nav-logo a {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: 1rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Navbar Slide-in Animation */

.nav-menu .nav-link {
    opacity: 0;
    transform: translateX(60px);
    animation: navLinkSlideIn 0.7s cubic-bezier(0.77,0,0.18,1) forwards;
}
.nav-menu .nav-link:nth-of-type(1) { animation-delay: 0.25s; }
.nav-menu .nav-link:nth-of-type(2) { animation-delay: 0.4s; }
.nav-menu .nav-link:nth-of-type(3) { animation-delay: 0.55s; }
.nav-menu .nav-link:nth-of-type(4) { animation-delay: 0.7s; }
.nav-menu .nav-link:nth-of-type(5) { animation-delay: 0.85s; }
.nav-menu .nav-link:nth-of-type(6) { animation-delay: 1.0s; }
.nav-menu .nav-link:nth-of-type(7) { animation-delay: 1.15s; }
.nav-menu .nav-link:nth-of-type(8) { animation-delay: 1.3s; }
.nav-menu .nav-link:nth-of-type(9) { animation-delay: 1.45s; }
.nav-menu .nav-link:nth-of-type(10) { animation-delay: 1.6s; }

@keyframes navLinkSlideIn {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  60% {
    opacity: 0.7;
    transform: translateX(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: rgba(255, 255, 255, 0.9);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: var(--transition);
    background: none;
    border: none;
    outline: none;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* ----------------------------------------------------------END OF NAVIGATION---------------------------------------------------------------*/
/* ----------------------------------------------------------START OF HERO---------------------------------------------------------------*/
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    background-image: url('../images/herobackground.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
} 


#subhero {
    background: transparent;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    margin: auto auto;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-slogan {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.9);
    letter-spacing: -1px;
    font-family: 'Oswald', sans-serif;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.3px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    flex-wrap: wrap;
    opacity: 1;
    transform: translateY(0);
    animation: none;

}

.hero-cta-primary,
.hero-cta-secondary {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.hero-cta-primary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 2px solid rgba(0, 180, 216, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    background: rgba(50, 50, 50, 0.6);
    border-color: #00b4d8;
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.hero-cta-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-cta-secondary:hover {
    transform: translateY(-3px);
    background: rgba(70, 70, 70, 0.5);
    border-color: rgba(0, 180, 216, 0.5);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeInBounce 1.5s ease 1.5s both, bounce 2s ease-in-out 2.5s infinite;
    cursor: pointer;
    z-index: 3;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--secondary-color);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
    transition: all 0.3s ease;
}

.scroll-indicator:hover i {
    color: var(--text-light);
    transform: translateY(5px);
}

/* Hero Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInBounce {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    60% {
        opacity: 1;
        transform: translateX(-50%) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ----------------------------------------------------------END OF HERO---------------------------------------------------------------*/
/* ----------------------------------------------------------START OF ABOUT---------------------------------------------------------------*/
.about {
    padding: 2rem 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    background: var(--bg-light);
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.about .section-header {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 2rem;
}

.about .section-title {
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    
}

.about .section-subtitle {
    font-weight: 500;
    color: var(--text-light);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-intro {
    margin-bottom: 3rem;
}

.about-intro h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    text-align: center;
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.2);
    border-color: var(--secondary-color);
}

.about-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--text-light);
}

.about-item h4 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.about-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.about-cta {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    margin-top: 2rem;
}

.about-cta h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.about-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.about-text p {
    font-size: 1.0rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.about .container {
    position: relative;
    z-index: 3;
}

/* ----------------------------------------------------------END OF ABOUT---------------------------------------------------------------*/
/* ----------------------------------------------------------START OF PROCESS---------------------------------------------------------------*/
.process {
    padding: 5rem 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    background: var(--bg-light);
}

.process-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(249, 249, 249, 0.95) 0%,
            rgba(255, 255, 255, 0.9) 50%,
            rgba(245, 245, 245, 0.95) 100%);
    z-index: 2;
}

.process .container {
    position: relative;
    z-index: 3;
}

.process .section-title {
    color: var(--primary-color);
}

.process .section-subtitle {
    color: var(--text-gray);
}

/* ----------------------------------------------------------END OF PROCESS---------------------------------------------------------------*/
/* ----------------------------------------------------------START OF PROJECTS---------------------------------------------------------------*/
.projects {
    padding: 2rem 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    background: var(--bg-dark);
}

.projects-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(30, 31, 38, 0.9) 0%,
            rgba(18, 18, 18, 0.8) 50%,
            rgba(31, 31, 31, 0.9) 100%);
    z-index: 2;
}

.projects-construction-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(249, 249, 249, 0.98);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.construction-message {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 500px;
}

.construction-message i {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.construction-message h3 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.construction-message p {
    font-size: 1.3rem;
    color: var(--text-gray);
    font-weight: 500;
}


.projects .section-header {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 2rem;
}

.projects .section-title {
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.projects .section-subtitle {
    font-weight: 500;
    color: var(--secondary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.projects-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Modern Project Cards */
.project-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 400px;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.project-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-image-overlay {
    opacity: 1;
}

.project-details-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(10px);
}

.project-card:hover .project-details-btn {
    transform: translateY(0);
}

.project-details-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.project-card-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.project-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.project-card-excerpt {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 0;
}

.project-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.project-tag {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Project Modal Styles */
.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.project-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.project-modal-content {
    position: relative;
    width: 90%;
    max-width: 1100px;
    max-height: 90vh;
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.project-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.project-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 90vh;
    overflow-y: auto;
}

.project-modal-image {
    position: relative;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    overflow-y: auto;
}

.project-modal-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.project-modal-info {
    padding: 3rem;
    overflow-y: auto;
}

.project-modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-family: 'Oswald', sans-serif;
}

.project-modal-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-modal-category,
.project-modal-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.project-modal-category i,
.project-modal-date i {
    color: rgba(255, 255, 255, 0.5);
}

.project-modal-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.project-modal-features {
    margin-bottom: 2rem;
}

.project-modal-features h4,
.project-modal-tech h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

.project-modal-features ul {
    list-style: none;
    padding: 0;
}

.project-modal-features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.project-modal-features li:before {
    content: '✓';
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    font-size: 1.1rem;
}

.project-modal-tech {
    margin-bottom: 2.5rem;
}

.project-modal-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.project-modal-tech-tags .project-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.project-modal-actions {
    display: flex;
    gap: 1rem;
}

.project-modal-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-modal-btn.primary {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.project-modal-btn.primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.project-modal-btn.secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.project-modal-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.projects .container {
    position: relative;
    z-index: 3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .projects-content {
        padding: 0 1rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
/* ----------------------------------------------------------END OF PROJECTS---------------------------------------------------------------*/
/* ---------------------------------------------------------- SERVICES ARE NOW IN SERVICES.CSS --------------------------------------------------------------- */
/* ----------------------------------------------------------START OF CONTACT---------------------------------------------------------------*/
.contact {
    padding: 2rem 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: visible;
    background: var(--bg-dark);
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(30, 31, 38, 0.9) 0%,
            rgba(18, 18, 18, 0.8) 50%,
            rgba(31, 31, 31, 0.9) 100%);
    z-index: 2;
}

.contact .section-header {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 2rem;
}

.contact .section-title {
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.contact .section-subtitle {
    font-weight: 500;
    color: var(--secondary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.contact-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-content h4 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 400;
}

.contact-cta-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.contact-cta-box h4 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.contact-cta-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.cta-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Form Messages */
.form-message {
  padding: 1rem 1.5rem !important;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 1;
  transition: opacity 0.3s ease;
  display: block !important;
  width: 100% !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  line-height: 1.6;
  white-space: normal !important;
  max-width: none !important;
  box-sizing: border-box;
  overflow: visible !important;
}

.form-message::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1.2rem;
  margin-right: 0.75rem;
  display: inline-block;
  vertical-align: middle;
}

.form-message-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.form-message-success::before {
  content: '\f058'; /* fa-check-circle */
}

.form-message-error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.form-message-error::before {
  content: '\f06a'; /* fa-exclamation-circle */
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}

.form-input select,
.form-input option {
    background: #1a1a1a;
    color: var(--text-light);
}

select.form-input option {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.95);
    padding: 10px;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(0, 180, 216, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.form-submit-btn:hover {
    background: rgba(70, 70, 70, 0.5);
    border-color: rgba(0, 180, 216, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
}

.contact .container {
    position: relative;
    z-index: 3;
}

/* ----------------------------------------------------------END OF CONTACT---------------------------------------------------------------*/
/* ----------------------------------------------------------START OF FOOTER---------------------------------------------------------------*/
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4,
.footer-logo h2 {
    margin-bottom: 1rem;
}

.footer-logo h2 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-link:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.footer-title {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 1);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--secondary-color);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.footer-bottom-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-content p {
    margin-bottom: 0.5rem;
}

.footer-bottom-content i {
    color: var(--accent-color);
}

/* ----------------------------------------------------------END OF FOOTER---------------------------------------------------------------*/

/* ----------------------------------------------------------START OF RESPONSIVE DESIGN---------------------------------------------------------------*/

/* Tablet Styles */
@media (max-width: 1178px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0.8rem 1rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-logo h2 {
        font-size: 1.8rem;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    /* Services grid moved to services.css */
    
    .contact-wrapper {
        gap: 2.5rem;
    }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 1030px) {
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 0;
        background: rgba(0, 0, 0, 0.98);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease, height 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        padding-top: 4.5rem;
    }
    .nav-menu.active {
        right: 0;
        height: 100vh;
    }
    .nav-link {
        font-size: 1.25rem;
        font-weight: 600;
        padding: 0.5rem 0;
    }
    
    /* Hamburger Animation */
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Mobile Portrait */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0.6rem 0.5rem;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .hero {
        padding: 0 1.5rem;
        min-height: 500px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        max-width: 280px;
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
    
    .scroll-indicator {
        bottom: 1.5rem;
    }
    
    .scroll-indicator i {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-intro h3 {
        font-size: 1.6rem;
    }
    
    .about-item {
        padding: 1.5rem 1rem;
    }
    
    .about-cta {
        padding: 2rem 1.5rem;
    }
    
    .about-cta h3 {
        font-size: 1.5rem;
    }
    
    /* Services content moved to services.css */
    .contact-content {
        padding: 0 1rem;
    }
    
    /* Services grid moved to services.css */
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Service card styling moved to services.css */
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .project-image-container {
        min-height: 300px;
    }
    
    .project-card-content {
        padding: 2rem;
    }
    
    .project-card-title {
        font-size: 1.6rem;
    }
    
    .project-card-excerpt {
        font-size: 1rem;
    }
    
    .project-modal-body {
        grid-template-columns: 1fr;
        max-height: 85vh;
    }
    
    .project-modal-image {
        height: 300px;
    }
    
    .project-modal-info {
        padding: 2rem;
    }
    
    .project-modal-actions {
        flex-direction: column;
    }
    
    .project-modal-content {
        width: 95%;
        max-height: 95vh;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .nav-container {
        padding: 0.5rem 0.3rem;
    }
    
    .nav-logo h2 {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1.2rem, 6vw, 2rem);
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Services content moved to services.css */
    .contact-content,
    .projects-content {
        padding: 0 0.5rem;
    }
    
    /* Service card moved to services.css */
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.4rem 0;
    }
}

/* Large Mobile Devices and Small Tablets */
@media (max-width: 390px) {
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
}
/* ----------------------------------------------------------END OF RESPONSIVE DESIGN---------------------------------------------------------------*/

/* ====================================== SERVICE DETAIL PAGES STYLES ====================================== */

/* Service Hero Section */
.service-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-dark) 50%, var(--primary-color) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.3" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #ff6b8a);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.3);
}

.service-hero-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--secondary-color), #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.3);
}

.service-hero-icon i {
    font-size: 3rem;
    color: white;
}

.service-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.service-hero-price {
    margin: 20px 0 30px;
}

.service-hero-price .price {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Oswald', sans-serif;
}

.service-hero-price .period {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-left: 10px;
}

.service-hero-description {
    font-size: 1.2rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #ff6b8a);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 77, 109, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 77, 109, 0.6);
}

/* Service Details Section */
.service-details {
    padding: 80px 20px;
    background: var(--bg-light);
}

.detail-section {
    margin-bottom: 80px;
}

.detail-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.detail-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Advanced Features Section */
.advanced-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
}
.feature-category {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(0,180,216,0.08);
    padding: 2rem 1.2rem 1.5rem;
    border-top: 4px solid var(--secondary-color);
    transition: var(--transition);
    position: relative;
    min-height: 260px;
}
.feature-category h3 {
    color: var(--secondary-color);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.feature-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-category li {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding-left: 1.2em;
}
.feature-category li i {
    color: var(--accent-color);
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 2px;
}
.feature-category:hover {
    box-shadow: 0 12px 36px rgba(0,180,216,0.13);
    border-top: 4px solid var(--accent-color);
}

.feature-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.5s ease;
    border-top: 4px solid var(--secondary-color);
    will-change: transform, box-shadow;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Perfect For Grid */
.perfect-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.perfect-for-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
}

.perfect-for-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.15);
}

.perfect-for-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.perfect-for-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.perfect-for-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Pricing Details */
.pricing-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

/* Our Process Timeline - Styles moved to process.css */

.pricing-card,
.timeline-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--secondary-color);
}

.pricing-card h3,
.timeline-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.price-breakdown,
.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.price-breakdown:last-child,
.timeline-item:last-child {
    border-bottom: none;
}

.total-price {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--secondary-color);
    text-align: center;
}

.total-price span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Service CTA Section */
.service-cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--bg-dark));
    color: white;
    padding: 80px 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
}

.service-cta-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 20px;
}

.service-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-color), #ff6b8a);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 77, 109, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    padding: 18px 40px;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 77, 109, 0.6);
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Maintenance Specific Styles */
.maintenance-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-category {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--secondary-color);
}

.service-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-category h3 i {
    color: var(--secondary-color);
}

.service-category ul {
    list-style: none;
}

.service-category li {
    padding: 8px 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 20px;
}

.service-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Support Levels */
.support-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.support-level {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.5s ease;
    will-change: transform, box-shadow;
}

.support-level:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.support-level.emergency {
    border-top: 4px solid #ff4757;
}

.support-level.urgent {
    border-top: 4px solid #ffa502;
}

.support-level.normal {
    border-top: 4px solid var(--secondary-color);
}

.support-level.enhancement {
    border-top: 4px solid #5f27cd;
}

.level-icon {
    transition: transform 0.3s ease;
}

.level-icon i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.emergency .level-icon i {
    color: #ff4757;
}

.urgent .level-icon i {
    color: #ffa502;
}

.normal .level-icon i {
    color: var(--secondary-color);
}

.enhancement .level-icon i {
    color: #5f27cd;
}

.support-level h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.response-time {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.support-level p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Why Maintenance Matters - Styles moved to maintenance-support.css */

/* What's Not Included */
.not-included {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.not-included-item {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #ffe6e6;
}

.not-included-item i {
    font-size: 2rem;
    color: #ff4757;
    margin-bottom: 15px;
}

.not-included-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.not-included-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Maintenance Plans */
.maintenance-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.plan-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.plan-card.basic {
    border-top: 4px solid var(--secondary-color);
}

.plan-card.premium {
    border-top: 4px solid var(--accent-color);
    border-color: var(--accent-color);
}

.plan-card.enterprise {
    border-top: 4px solid #5f27cd;
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), #ff6b8a);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.plan-price {
    text-align: center;
    margin-bottom: 30px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Oswald', sans-serif;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-gray);
    font-family: 'Poppins', sans-serif;
}

.plan-features {
    list-style: none;
    margin-bottom: 20px;
}

.plan-features li {
    padding: 10px 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.plan-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-10px); 
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced hover effects */
.plan-card:hover .plan-price {
    color: var(--accent-color);
    transform: scale(1.1);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}
/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .service-hero {
        padding: 100px 20px 60px;
        min-height: 80vh;
    }
    
    .service-hero-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .service-hero-icon i {
        font-size: 2.5rem;
    }
    
    .service-hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .service-details {
        padding: 60px 20px;
    }
    
    .detail-section {
        margin-bottom: 60px;
    }
    
    .features-grid,
    .perfect-for-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .maintenance-services,
    .support-levels,
    .why-maintenance,
    .not-included,
    .maintenance-plans {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .service-hero-price .price {
        font-size: 2rem;
    }
    
    .feature-item,
    .perfect-for-item {
        padding: 30px 20px;
    }
    
    .service-cta-section {
        padding: 60px 20px;
        margin-top: 40px;
    }
    
    .plan-card {
        padding: 30px 20px;
    }
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.testimonials .section-title {
    color: rgba(255, 255, 255, 0.95);
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.2);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}