:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --secondary-color: #3498db;
    --light-pink: #f8d7da;
    --dark-navy: #1a252f;
    --gradient-primary: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --gradient-accent: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    --gradient-secondary: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    overflow-x: hidden;
}

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

#header {
    background: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

#header.scrolled {
    background: white;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    padding: 0;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
}

.navbar-brand img {
  max-width: 50%;
  height: auto;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--primary-color) !important;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

.navbar-nav .nav-link.active {
    color: var(--accent-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.btn-primary-custom {
    background: var(--gradient-accent);
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

.btn-primary-header {
    background: var(--gradient-accent);
    border: none;
    padding: 9px 15px;
    font-weight: 500;
    color: white;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-header:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

/* Style the email link to match nav-link appearance */
.email-link {
    font-weight: 500;
    color: var(--primary-color) !important;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
    margin-left: -8rem;
}

/* Hover effect to match nav-link */
.email-link:hover {
    color: var(--accent-color) !important;
}


.btn-outline-custom {
    border: 2px solid white;
    color: white;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    background: transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-custom:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

#hero-section {
    background: 
      linear-gradient(to right,#2c3e50f2 0%, #34495e 100%),
      url('images/7119570.jpg') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}


#hero-section .hero-content {
    position: relative;
    z-index: 2;
}

#hero-section .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    overflow: hidden;
    position: relative;
}

#hero-section  .hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

#hero-section  .hero-title .word:nth-child(1) { animation-delay: 0.1s; }
#hero-section  .hero-title .word:nth-child(2) { animation-delay: 0.3s; }
#hero-section  .hero-title .word:nth-child(3) { animation-delay: 0.5s; }
#hero-section  .hero-title .word:nth-child(4) { animation-delay: 0.7s; }
#hero-section  .hero-title .word:nth-child(5) { animation-delay: 0.9s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typewriter effect alternative */
#hero-section  .hero-title.typewriter {
    border-right: 3px solid white;
    animation: blink 1s infinite;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: typewriter 4s steps(50) 1s forwards, blink 1s infinite;
}

@keyframes typewriter {
    to {
        width: 100%;
    }
}

@keyframes blink {
    0%, 50% { border-color: white; }
    51%, 100% { border-color: transparent; }
}


#hero-section .floating {
  position: relative;
  display: inline-block;
}

.hero-img {
  max-width: 70%;
  height: auto; 
  margin-top: 5rem;
  align-items: center;
  border-radius: 25px;
  transition: transform 0.3s ease;
  position: relative;
}

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

/* Overlayed images */
.overlay-img {
  position: absolute;
  width: 50%;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  opacity: 0.9;
}

.img-1 {
  top: -40px;
  left: -30px;
  display: none;
  z-index: 0;
}

.img-2 {
  bottom: -100px;
  right: -20px;
  z-index: 2;
}


#hero-section .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Medium screens (tablets) */
@media (max-width: 992px) {
  #hero-section .floating {
    top: 41px;
    right: 50px;
  }
}

/* Small screens (phones) */
@media (max-width: 768px) {
  #hero-section .floating {
    top: 40px;
    left: 0;
    transform: translateX(-50%);
  }
}

/* Extra small screens */
@media (max-width: 576px) {
  #hero-section .floating {
        top: 20px;
        left: 40%;
        transform: translateX(-50%);
  }
}




/* .floating {
    
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {

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

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


/* Services Section */

#common-hero-section {
    background: 
        linear-gradient(to right, #2c3e50f2 0%, #34495e 100%),
        url('images/7119570.jpg') no-repeat center center;
    background-size: cover;
    font-family: 'Playfair Display', serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Hero image adjustments */
#common-hero-section .hero-img {
    position: absolute;
    max-width: 30%;
    height: auto;
    border-radius: 10px;
}

#common-hero-section .hero-img.top-right {
    right: 0%;
    top: 10%;
}

#common-hero-section .hero-img.bottom-left {
    left: -2%;
    bottom: -5%;
}

/* Responsive adjustments for images */
@media (max-width: 768px) {
    #common-hero-section .hero-img {
        max-width: 40%;
    }

    #common-hero-section .hero-img.top-right {
        right: 2%;
        top: 5%;
    }

    #common-hero-section .hero-img.bottom-left {
        left: 2%;
        bottom: 5%;
    }
}

/* Floating geometric shapes */
#common-hero-section .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

#common-hero-section .shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

#common-hero-section .shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

#common-hero-section .shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    border-radius: 20%;
}

#common-hero-section .shape:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

#common-hero-section .shape:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
    border-radius: 0;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Enhanced hero title */
#common-hero-section .common-hero-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: var(--text-shadow);
    background: linear-gradient(45deg, #fff, #f0f8ff, #fff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite, fadeInUp 1s ease-out;
    position: relative;
}

#common-hero-section .common-hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 2px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        opacity: 0.7;
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.9);
        opacity: 1;
    }
}

/* Enhanced lead text */
#common-hero-section .lead {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-family: 'Inter', serif;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-shadow: var(--text-shadow);
    animation: fadeInUp 1s ease-out 0.3s both;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* Particle effect */
#common-hero-section .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

#common-hero-section .particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particle-float 8s linear infinite;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Fade in animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 1s ease-out both;
}

.fade-in:nth-child(2) {
    animation-delay: 0.3s;
}

/* Scroll indicator */
#common-hero-section .scroll-indicator {
    position: absolute;
    cursor: pointer;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

#common-hero-section .scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-padding {
        padding: 1rem;
    }

    .common-hero-title {
        font-size: 36px;
        margin-bottom: 1rem;
    }

    .lead {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .shape {
        display: none;
    }
}

/* Interactive hover effects */
#common-hero-section:hover .common-hero-title {
    animation-duration: 1.5s;
}

#common-hero-section:hover .shape {
    animation-duration: 3s;
}

/* Services Section */
#services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    z-index: 10;
}

#services-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
}

#services-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    transform: translateX(-50%);
}

#services-section .service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    height: 100%;
}

#services-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

#services-section .service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

#services-section .service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Gallery Section */
#gallery-section {
    background: var(--primary-color);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

#gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color) 0%, var(--dark-navy) 100%);
    opacity: 0.9;
}

#gallery-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4rem;
    color: white;
    position: relative;
    z-index: 2;
}

#gallery-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 100px;
    height: 4px;
    background: var(--gradient-accent);
    transform: translateX(-50%);
    border-radius: 2px;
}

.gallery-container {
    position: relative;
    z-index: 2;
}

.gallery-scroll {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 30px;
}

.gallery-item {
    min-width: 350px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(231, 76, 60, 0.8));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.gallery-content h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Portfolio Section */
#portfolio-section {
    background: white;
}

#portfolio-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
    position: relative;
}

#portfolio-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 100px;
    height: 4px;
    background: var(--gradient-accent);
    transform: translateX(-50%);
    border-radius: 2px;
}

#portfolio-section .portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 30px;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

#portfolio-section .portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

#portfolio-section .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#portfolio-section .portfolio-item:hover .portfolio-overlay {
    opacity: 0.9;
}

#portfolio-section .portfolio-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: all 0.3s ease;
    padding: 20px;
}

#portfolio-section .portfolio-item:hover .portfolio-content {
    transform: translateY(0);
}

/* Pricing Section */
#pricing-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

#pricing-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4rem;
    color: white;
    position: relative;
}

#pricing-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 100px;
    height: 4px;
    background: white;
    transform: translateX(-50%);
    border-radius: 2px;
}

#pricing-section .pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

#pricing-section .pricing-card.featured {
    transform: scale(1.05);
    background: white;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

#pricing-section .pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 25px;
    right: -35px;
    background: var(--accent-color);
    color: white;
    padding: 8px 45px;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

#pricing-section .price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    /* margin: 25px 0; */
}

#pricing-section .price-features {
    list-style: none;
    padding: 0;
    /* margin: 30px 0; */
}

#pricing-section .price-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

#pricing-section .price-features li:last-child {
    border-bottom: none;
}

/* Testimonials Section */
#testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

#testimonials-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
    position: relative;
}

#testimonials-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 100px;
    height: 4px;
    background: var(--gradient-accent);
    transform: translateX(-50%);
    border-radius: 2px;
}

#testimonials-section .testimonial-card {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 20px 0;
    transition: all 0.3s ease;
}

#testimonials-section .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

#testimonials-section .testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--gradient-accent);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
}

/* FAQ Section */
#faq-section {
    background: white;
}

#faq-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
    position: relative;
}

#faq-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 100px;
    height: 4px;
    background: var(--gradient-accent);
    transform: translateX(-50%);
    border-radius: 2px;
}

#faq-section .faq-item {
    border: none;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

#faq-section .faq-header {
    background: #f8f9fa;
    border: none;
    padding: 25px 35px;
    font-weight: 600;
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 1.1rem;
}

#faq-section .faq-header:hover {
    background: var(--light-pink);
}

/* Contact Section */
#contact-section {
    background: var(--gradient-primary);
    color: white;
}

#contact-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4rem;
    color: white;
    position: relative;
}

#contact-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 100px;
    height: 4px;
    background: white;
    transform: translateX(-50%);
    border-radius: 2px;
}

#contact-section .contact-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 50px;
    color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 12px 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

#footer {
    background: var(--dark-navy);
    color: white;
    padding: 60px 0 40px;
}

.footer-social a {
    display: inline-block;
    width: 55px;
    height: 55px;
    background: var(--accent-color);
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    color: white;
    margin: 0 15px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social a:hover {
    transform: translateY(-8px);
    background: #c0392b;
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

.modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 15px 30px;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 30px;
}

.portfolio-modal-image {
    height: 400px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}




@media (max-width: 768px) {
    #hero-section .hero-title {
        font-size: 2.8rem;
    }

    #hero-section .hero-subtitle {
        font-size: 1.2rem;
    }

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

    #pricing-section .pricing-card.featured {
        transform: none;
        margin-top: 30px;
    }

    .gallery-item {
        min-width: 280px;
        height: 200px;
    }

    .btn-order-now {
        margin-left: 10px;
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    #hero-section .hero-title {
        font-size: 2.2rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    .gallery-item {
        min-width: 250px;
        height: 180px;
    }

    .navbar-brand {
        font-size: 1.6rem;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Portfolio Image Classes */
/* .portfolio-embroidery {
    background-image: url('https://images.unsplash.com/photo-1556761175-4b46a572b786?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.portfolio-vector {
    background-image: url('https://images.unsplash.com/photo-1611224923853-80b023f02d71?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.portfolio-logo {
    background-image: url('https://images.unsplash.com/photo-1581291518857-4e27b48ff24e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.portfolio-corporate {
    background-image: url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.portfolio-sports {
    background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.portfolio-wedding {
    background-image: url('https://images.unsplash.com/photo-1583939003579-730e3918a45a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
} */



/* --- ENHANCEMENTS FOR ALL PAGES --- */

/* Contact Info Card & Map */
.contact-info-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.08);
    padding: 32px 28px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.08);
}

/* Portfolio Filtering */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 2.5rem;
}

.portfolio-filter .btn {
    border-radius: 30px;
    padding: 8px 28px;
    font-weight: 500;
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
    transition: all 0.2s;
}

.portfolio-filter .btn.active,
.portfolio-filter .btn:hover {
    background: var(--gradient-accent);
    color: #fff;
}

/* Portfolio Item Animation */
.portfolio-item.hide {
    opacity: 0 !important;
    pointer-events: none;
    transform: scale(0.95) translateY(30px);
    transition: all 0.4s cubic-bezier(.4, 2, .6, 1);
}

.portfolio-item.show {
    opacity: 1 !important;
    pointer-events: auto;
    transform: scale(1) translateY(0);
    transition: all 0.4s cubic-bezier(.4, 2, .6, 1);
}

/* Pricing Tooltip */
.price-features li[title] {
    position: relative;
    cursor: help;
}

.price-features li[title]:hover::after {
    content: attr(title);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 0.95em;
    margin-left: 10px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.12);
}

/* Sticky Order Button (Mobile) */
.sticky-order-btn {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18);
}

@media (max-width: 768px) {
    .sticky-order-btn {
        display: block;
        
    }
}

/* File Upload Preview */
.file-upload-preview {
    margin-top: 10px;
    font-size: 0.98em;
    color: var(--accent-color);
    background: #fff6f6;
    border-radius: 8px;
    padding: 8px 14px;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.07);
}

/* Modal Animation */
.modal.fade .modal-dialog {
    transform: translateY(40px) scale(0.98);
    opacity: 0;
    transition: all 0.35s cubic-bezier(.4, 2, .6, 1);
}

.modal.show .modal-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Section Divider */
.section-divider {
    width: 100px;
    height: 5px;
    background: var(--gradient-accent);
    border-radius: 3px;
    margin: 40px auto 60px auto;
}

/* Animate CTA Button */
.btn-cta-animate {
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.2);
    }

    100% {
        box-shadow: 0 0 0 12px rgba(231, 76, 60, 0.05);
    }
}


/* Service Process Section */
#service-process-section {
    background: #f8f9fa;
}

#service-process-section .process-step {
    padding: 30px 20px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

#service-process-section .process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

#service-process-section .process-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

#service-process-section .process-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 20px;
    font-size: 1.8rem;
    color: white;
}

#service-process-section .process-step h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Detailed Services Section */
#detailed-services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

#detailed-services-section .service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0;
    padding: 10px 0;
    border-top: 2px solid #f0f0f0;
}

/* Quality Assurance Section */
#quality-section {
    background: white;
}

.custom-negative-margin {
    margin-left: -3.6rem;
    margin-right: 1.3rem;
}

@media (min-width: 576px) {
  .custom-negative-margin {
    margin-left: -1.5rem; /* for small screens */
  }
}

@media (min-width: 768px) {
  .custom-negative-margin {
    margin-left: -3rem; /* equivalent to ms-md-n5 */
  }
}

@media (min-width: 992px) {
  .custom-negative-margin {
    margin-left: 0; /* equivalent to ms-lg-0 */
  }
}

#quality-section .quality-icon {
    width: 30px;
    height: 30px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

#quality-section .quality-item h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

#quality-section .quality-item p {
    color: #666;
    font-size: 0.95rem;
}

#quality-section .quality-image img {
    border-radius: 20px;
    max-width: 70%;
}

/* Industries Section */
#industries-section {
    background: var(--gradient-primary);
    color: white;
}

#industries-section .section-title {
    color: white;
}

#industries-section .section-title::after {
    background: white;
}

#industries-section .industry-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#industries-section .industry-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

#industries-section .industry-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
}

#industries-section .industry-item h6 {
    font-weight: 600;
    margin: 0;
    color: white;
}

/* CTA Section */
#cta-section {
    background: var(--gradient-accent);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    #service-process-section .process-step {
        margin-bottom: 30px;
    }

    #quality-section .quality-item {
        margin-bottom: 25px;
    }

    #industries-section .industry-item {
        margin-bottom: 20px;
    }
}

/* Process Section Styles */
#process-section {
  background: var(--gradient-primary);
  color: white;
}

#process-section .process-step {
  text-align: center;
  border: 2px solid  white;
  padding: 2rem 1rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

#process-section .process-step:hover {
  transform: translateY(-5px);
}

#process-section .process-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
}

#process-section .process-step h4 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

#process-section .process-step p {
  color: var(--text-muted);
  margin-bottom: 0;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  #process-section .process-step {
    margin-bottom: 2rem;
  }
  
  #filter-section .filter-btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }
  
  #stats-section .stat-number {
    font-size: 2.5rem;
  }
}

/* Stats Section Styles */
#stats-section {
  background: var(--gradient-accent);
  color: #fff;
}

#stats-section .stat-item {
  padding: 2rem 1rem;
}

#stats-section .stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #fff, rgba(255,255,255,0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#stats-section .stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}