/* Hero Section Styling */
.hero-section {
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at top center,
        var(--color-nebula-gold) 0%,
        transparent 70%
    );
    z-index: 0;
    opacity: 0.03;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.6) 50%, 
        rgba(0, 0, 0, 0.8) 100%
    );
}

.section-title {
    font-family: var(--font-secondary);
    font-weight: 600; /* Semi-bold for impact */
    letter-spacing: -0.5px; /* Tighter spacing for modern look */
}

/* For "Crafting Digital Elegance" and subtitles */
.section-subtitle {
    font-family: var(--font-primary);
    font-weight: 400;
    letter-spacing: 2px; /* Slightly tighter than before */
}

/* For testimonials */
.testimonials-title {
    position: absolute;
  top: 10%; /* ← this controls the vertical position */
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem) !important;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--color-light) !important;
  margin-bottom: 0.5rem;
}


/* About Section Styling */
.about-section {
    position: relative;
  overflow: hidden;
  padding: 8rem 0;
}

.about-section .section-title {
  font-size: clamp(1.8rem, 4vw, 3rem) !important;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--color-light) !important;
  margin-bottom: 1.5rem;
}


.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}


.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        var(--color-nebula-blue) 0%,
        transparent 30%
    );
    opacity: 0.03;
    z-index: 0;
}

.about-item {
    position: relative;
    height: 200px;
  padding: 2.5rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(10, 10, 18, 0.5);
  backdrop-filter: blur(8px);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.about-item:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.about-item h3 {
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

/* Work Section Styling */
.work-section {
    position: relative;
}

.work-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        var(--color-space-light) 0%,
        var(--color-space-dark) 100%
    );
    opacity: 0.05;
    z-index: 0;
}

.sticky-title h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-primary);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

/* New Projects Section Styling */
.projects-section {
    position: relative;
    padding: 4rem 0 !important;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(212, 175, 55, 0.03) 0%,
        transparent 70%
    );
    z-index: 0;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0vw;
    padding: 0 5vw;
    position: relative;
    z-index: 2;
    margin: 2rem auto;
}

.project-card {
    position: relative;
    height: 400px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1a1a1a, #0a0a0a);
    z-index: 1;
}

.project-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        transparent 100%
    );
    z-index: 3;
    transform: translateZ(30px);
}

.project-info h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.project-info p {
    font-size: 0.9rem;
    color: var(--color-primary);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-primary);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* View All Projects Button */
.projects-more {
    text-align: center;
    margin-top: 2rem;
    padding-bottom: 2rem;
}

.cta-button.view-all {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all var(--transition-medium);
}

.cta-button.view-all:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .projects-container {
        grid-template-columns: 1fr;
        gap: 5vw;
    }
    
    .project-card {
        height: 300px;
    }
}
/* Process Section Styling */
.process-section {
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--color-nebula-gold) 0%,
        var(--color-nebula-red) 50%,
        transparent 100%
    );
    opacity: 0.03;
    z-index: 0;
}

.process-title {
  font-size: clamp(1.8rem, 4vw, 3rem) !important;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--color-light) !important;
  margin-bottom: 1.5rem;
}

.timeline-item {
    opacity: 0;
    transform: translateY(20px);
}

.timeline-number {
    font-size: 1.5rem;
    color: var(--color-primary);
    background-color: var(--color-dark);
    padding: var(--space-xs);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

/* Contact Section Styling */
.contact-section {
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at bottom center,
        var(--color-nebula-blue) 0%,
        transparent 70%
    );
    opacity: 0.03;
    z-index: 0;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-medium);
}

.social-links a:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.social-links svg {
    width: 1rem;
    height: 1rem;
}

/* Footer Styling */
.main-footer {
    background-color: var(--color-dark);
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        var(--color-space-dark) 0%,
        transparent 100%
    );
    z-index: 0;
}

.footer-logo svg {
    width: 120px;
    height: auto;
}

.copyright {
    font-size: 0.875rem;
    opacity: 0.6;
}

.footer-links a {
    position: relative;
    z-index: 101;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary);
}

/* Section Dividers */
.section-divider {
    position: relative;
    height: 150px;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 18, 0.8) 0%,
        rgba(10, 10, 18, 0) 50%,
        rgba(10, 10, 18, 0.8) 100%
    );
    z-index: 1;
}

/* Creative Showcase Styles */
.creative-showcase {
    position: relative;
    padding: 10vw 0;
}

.creative-blocks {
    display: flex;
    flex-direction: column;
    gap: 10vw;
    margin-top: 5vw;
}

.creative-block {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.block-content {
    display: flex;
    align-items: center;
    gap: 5vw;
}

.block-text h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.block-text p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    max-width: 500px;
}

.right-text {
    text-align: right;
    margin-left: auto;
}

.center-text {
    text-align: center;
    margin: 0 auto;
}

.block-image {
    flex: 1;
    position: relative;
    z-index: 1;
    height: 60vh;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.block-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: radial-gradient(ellipse at center, 
        rgba(212, 175, 55, 0.4) 0%, 
        transparent 70%);
    filter: blur(10px);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.block-image:hover::after {
    opacity: 0.8;
}


.image-mask {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Different mask styles for each block */
.mask-1 {
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}

.mask-2 {
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.mask-3 {
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    height: 80%;
    align-self: center;
}

.mask-4 {
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.discover-more {
    margin-top: 5vw;
    text-align: center;
}

/* Project Gallery Redesign */
.projects-container {
    display: flex;
    flex-direction: column;
    gap: 10vw;
    padding: 0 5vw;
}

.project-card {
    position: relative;
    width: 60%;
    height: 60vh;
    margin: 0 auto;
}

.project-card:nth-child(odd) {
    margin-right: 0;
    margin-left: auto;
}

.project-card:nth-child(even) {
    margin-left: 0;
    margin-right: auto;
}

.project-card:nth-child(3n+1) {
    margin-top: -5vw;
}

.project-card:nth-child(3n+2) {
    margin-bottom: -5vw;
}

.project-info {
    position: absolute;
    width: 40%;
    padding: 2rem;
    background: rgba(10, 10, 18, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.project-card:nth-child(odd) .project-info {
    left: -45%;
    top: 50%;
    transform: translateY(-50%);
}

.project-card:nth-child(even) .project-info {
    right: -45%;
    top: 50%;
    transform: translateY(-50%);
}

/* Contact Section Redesign */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(10, 10, 18, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group .focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-option:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.submit-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--color-primary);
    color: var(--color-dark);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .block-content {
        flex-direction: column;
    }
    
    .block-content.reverse {
        flex-direction: column;
    }
    
    .block-text {
        margin: 2rem 0 !important;
        text-align: center !important;
    }
    
    .block-image {
        width: 100%;
        height: 40vh;
    }
    
    .project-card {
        width: 90%;
        height: 50vh;
        margin: 5vw auto !important;
    }
    
    .project-info {
        position: relative;
        width: 100%;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        margin-top: 1rem;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Navigation Styles */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.nav-container {
    width: 100%;
    max-width: 1440px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-socials {
    display: flex;
    gap: 1.5rem;
}

.nav-socials a {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-socials svg {
    width: 100%;
    height: 100%;
}

.logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scale(2.3); /* 1.0 is default; increase for size */
    transform-origin: center;
}

.logo-image {
    height: 2.5rem;
    width: auto;
}

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 1.25rem;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background: white;
    transition: all 0.3s ease;
}

.hamburger span:first-child {
    width: 70%;
    margin-left: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-size: 2rem;
    font-family: var(--font-secondary);
    color: white;
    opacity: 0;
    transform: translateX(20px);
}

/* Menu Animation */
.menu-toggle.active .hamburger span:first-child {
    transform: rotate(45deg) translate(4px, 4px);
    width: 100%;
}

.menu-toggle.active .hamburger span:last-child {
    transform: rotate(-45deg) translate(4px, -4px);
}

@media (max-width: 768px) {
    .main-nav {
        padding: 1rem;
    }
    
    .logo-image {
        height: 2rem;
    }
    
    .mobile-menu a {
        font-size: 1.5rem;
    }
}

.about-section {
    position: relative;
    overflow: hidden;
}

.about-item {
    position: relative;
    padding: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    transition: all var(--transition-medium);
    overflow: hidden;
    isolation: isolate;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.03) 0%,
        transparent 100%
    );
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.item-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 75% 25%,
        rgba(212, 175, 55, 0.05) 0%,
        transparent 70%
    );
    z-index: -2;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.item-number {
    font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  display: block;
  font-family: var(--font-secondary);
}

.item-title {
    font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  font-weight: 400;
  position: relative;
  display: inline-block;
}

.item-title::after {
    content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 0.4s ease;
}

.item-description {
    font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 0;
}

.item-expansion {
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-slow);
    opacity: 0;
}

.learn-more {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-primary);
    position: relative;
}

.learn-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width var(--transition-medium);
}

.item-stars {
    position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.item-stars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="10" cy="15" r="0.5" fill="white" opacity="0.7"/><circle cx="30" cy="25" r="0.3" fill="white" opacity="0.5"/><circle cx="70" cy="10" r="0.4" fill="white" opacity="0.6"/><circle cx="85" cy="30" r="0.5" fill="white" opacity="0.7"/><circle cx="20" cy="70" r="0.3" fill="white" opacity="0.5"/><circle cx="50" cy="80" r="0.4" fill="white" opacity="0.6"/><circle cx="90" cy="60" r="0.5" fill="white" opacity="0.7"/></svg>');
    opacity: 0;
    transition: opacity var(--transition-slow);
}

/* Hover States */
.about-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.about-item:hover::before {
    opacity: 1;
}

.about-item:hover .item-bg {
    opacity: 1;
}

.about-item:hover .item-title::after {
    width: 100%;
}

.about-item:hover .item-expansion {
    max-height: 200px;
    opacity: 1;
}

.about-item:hover .learn-more::after {
    width: 100%;
}

.about-item:hover .item-stars::before {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-item {
    padding: 2rem;
  }
}
    
    .item-title {
        font-size: 1.25rem;
    }
    
    .item-description {
        font-size: 1rem;
    }
}

/* Add to style.css */
.pulse-header {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.pulse-header::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -20px;
    right: -20px;
    bottom: -10px;
    background: rgba(212, 175, 55, 0.05);
    z-index: -1;
    border-radius: 4px;
    animation: pulseBg 6s ease infinite;
}

@keyframes pulseBg {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.2; }
}
}

/* Remove yellow dot bug */
body::before {
    display: none !important;
}

/* Remove sticky notification */
.sticky-notification {
    display: none !important;
}

/* Featured Project Styles */

.featured-project {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem auto 0;
    max-width: 1200px;
    position: relative;
}

.project-details {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 0 1.5rem;
}

.project-visual {
    order: 2;
    position: relative;
    height: 400px; /* Fixed height for consistency */
    border-radius: 12px;
    overflow: hidden;
}

.project-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        transparent 20%,
        transparent 80%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.project-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--color-primary);
    align-items: center;
}


.project-category {
    background: rgba(212, 175, 55, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.project-date {
    opacity: 0.7;
}

.project-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.project-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.view-project {
    align-self: flex-start;
    margin-top: 1rem;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .featured-project {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
    
    .project-details {
        flex: 1;
        padding: 0;
    }
    
    .project-visual {
        flex: 1;
        height: 350px; /* Slightly smaller on desktop */
    }
}

@media (min-width: 1024px) {
    .featured-project {
        gap: 4rem;
    }
    
    .project-visual {
        height: 400px;
    }
}

/* Calendly Widget Styling */
/* Calendly Widget Styling */
.calendly-inline-widget {
    margin: 2rem auto 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(10, 10, 18, 0.5);
    backdrop-filter: blur(10px);
    max-width: 800px;
    width: 100%;
    height: 700px;
    position: relative;
    z-index: 10;
}

/* Fix for Calendly iframe */
.calendly-inline-widget iframe {
    background: transparent !important;
}

/* Calendly overlay styling */
.calendly-overlay {
    backdrop-filter: blur(5px) !important;
    background: rgba(10, 10, 18, 0.95) !important;
    cursor: none !important;
}

/* Calendly popup styling */
.calendly-popup {
    border-radius: 12px !important;
    overflow: hidden !important;
    max-height: 90vh !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    background: var(--color-dark) !important;
    cursor: none !important;
}

/* Close button styling */
.calendly-popup-close {
    top: 15px !important;
    right: 15px !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(212, 175, 55, 0.1) !important;
    border-radius: 50% !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    backdrop-filter: blur(5px) !important;
}

.calendly-popup-close-icon {
    color: var(--color-primary) !important;
    width: 16px !important;
    height: 16px !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .calendly-inline-widget {
        height: 600px;
        cursor: none !important;
    }
    
    .calendly-popup {
        width: 95% !important;
        height: 90% !important;
        max-height: none !important;
        cursor: none !important;
    }
    
    .calendly-popup-content {
        padding: 0 !important;
        cursor: none !important;
    }
}


.scroll-icon {
  width: 24px;
  height: 40px;
  border: 1px solid var(--color-primary);
  border-radius: 12px;
  position: relative;
  margin-top: 1rem;
}

.scroll-icon::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 8px;
  background: var(--color-primary);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0% { opacity: 1; transform: translateY(0) translateX(-50%); }
  100% { opacity: 0; transform: translateY(10px) translateX(-50%); }
}

