:root {
    --primary: #ec4899;
    --primary-light: #fce4ec;
    --secondary: #8b5cf6;
    --white: #ffffff;
    --light: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #adb5bd;
    --dark: #212529;
    --dark-gray: #495057;
    --dark-blue: #0f172a;
    --glass: rgba(255, 255, 255, 0.9);
    --glass-dark: rgba(15, 23, 42, 0.9);
}

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

h1, h2, h3, h4, h5, .display-font {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation */
/* Modern Navbar Styles */
.navbar {
padding: 1.25rem 0;
transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
background-color: rgba(15, 23, 42, 0.85);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
padding: 0.75rem 0;
background-color: rgba(255, 255, 255, 0.95) !important;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.navbar-brand {
font-weight: 700;
font-size: 1.65rem;
letter-spacing: 0.5px;
color: var(--white);
}

.navbar.scrolled .navbar-brand {
color: var(--dark);
}

.navbar-toggler {
border: none;
padding: 0.5rem;
transition: all 0.3s ease;
}

.navbar-toggler:focus {
box-shadow: none;
}

.nav-link {
font-weight: 500;
padding: 0.5rem 0;
margin: 0 0.5rem;
color: var(--white) !important;
transition: all 0.3s ease;
}

.navbar.scrolled .nav-link {
color: var(--dark) !important;
}

.nav-link-text {
position: relative;
padding: 0.5rem 0;
}

.nav-link-text::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, var(--primary), var(--secondary));
transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover .nav-link-text::after {
width: 100%;
}

.btn-gradient {
background: linear-gradient(90deg, var(--primary), var(--secondary));
color: white;
border: none;
position: relative;
overflow: hidden;
transition: all 0.4s ease;
box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-gradient:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

/* Modern hamburger icon */
.navbar-toggler svg {
transition: all 0.3s ease;
}

.navbar-toggler:hover svg {
transform: scale(1.1);
}

.navbar-toggler[aria-expanded="true"] svg path:nth-child(1) {
transform: translateY(6px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] svg path:nth-child(2) {
opacity: 0;
}

.navbar-toggler[aria-expanded="true"] svg path:nth-child(3) {
transform: translateY(-6px) rotate(-45deg);
}

.navbar-toggler svg path {
transition: all 0.3s ease;
transform-origin: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(236, 72, 153, 0.5);
}

.btn-primary:hover::before {
    opacity: 1;
}

/* Modern Hero Section Styles */
.hero-section {
height: 100vh;
min-height: 700px;
position: relative;
overflow: hidden;
background-color: var(--dark-blue);
color: var(--white);
display: flex;
align-items: center;
}

.hero-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') center/cover no-repeat;
z-index: 0;
opacity: 0.9;
animation: kenburns 20s infinite alternate;
}

@keyframes kenburns {
0% { transform: scale(1); }
100% { transform: scale(1.05); }
}

.hero-bg::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.hero-content {
position: relative;
z-index: 2;
padding: 2rem;
}

.hero-title {
font-size: clamp(2.5rem, 5vw, 4.5rem);
line-height: 1.1;
margin-bottom: 1.5rem;
letter-spacing: -0.5px;
text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.text-outline {
-webkit-text-stroke: 1px var(--white);
color: transparent;
}

.hero-subtitle {
font-size: 1.25rem;
opacity: 0.9;
margin-bottom: 2.5rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.btn-gradient {
background: linear-gradient(90deg, var(--primary), var(--secondary));
color: white;
border: none;
transition: all 0.4s ease;
box-shadow: 0 4px 20px rgba(236, 72, 153, 0.3);
font-weight: 500;
}

.btn-gradient:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

.btn-outline-light {
border-width: 2px;
transition: all 0.4s ease;
}

.btn-outline-light:hover {
background-color: rgba(255, 255, 255, 0.1);
transform: translateY(-3px);
}

/* .scroll-indicator {
position: absolute;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
color: var(--white);
opacity: 0.8;
cursor: pointer;
transition: all 0.3s ease;
} */

.scroll-indicator:hover {
opacity: 1;
transform: translateX(-50%) translateY(5px);
}

/* Animate.css integration */
.animate__animated {
--animate-duration: 1s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.hero-title {
font-size: 2.5rem;
}

.hero-subtitle {
font-size: 1.1rem;
}

.btn-gradient, .btn-outline-light {
width: 100%;
}

.d-flex.flex-wrap {
gap: 1rem !important;
}
}

/* Modern About Section Styles */
.about-section {
padding: 8rem 0;
position: relative;
background-color: var(--white);
}

.about-img-wrapper {
position: relative;
height: 100%;
min-height: 500px;
overflow: hidden;
}

.about-img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.img-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, rgba(15, 23, 42, 0.3) 0%, rgba(236, 72, 153, 0.15) 100%);
}

.about-content {
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}

.section-header {
position: relative;
}

.section-subtitle {
display: inline-block;
margin-bottom: 1rem;
letter-spacing: 1.5px;
}

.about-text p {
color: var(--dark-gray);
line-height: 1.7;
}

.stat-item {
position: relative;
padding: 1.5rem 1rem;
background: var(--white);
border-radius: 0.5rem;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease;
}

.stat-item:hover {
transform: translateY(-5px);
}

.stat-number {
margin-bottom: 0.5rem;
line-height: 1;
}

.stat-label {
color: var(--medium-gray);
letter-spacing: 1px;
}

.stat-bar {
height: 4px;
background: var(--light-gray);
margin-top: 1.5rem;
border-radius: 2px;
overflow: hidden;
}

.bar-fill {
height: 100%;
width: 100%;
animation: barFill 1.5s ease-out forwards;
}

@keyframes barFill {
from { width: 0; }
to { width: 100%; }
}

/* Animations */
.animate__animated {
--animate-duration: 1s;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
.about-img-wrapper {
min-height: 400px;
}

.about-content {
padding: 3rem 2rem;
}
}

@media (max-width: 768px) {
.about-section {
padding: 5rem 0;
}

.stat-item {
margin-bottom: 1.5rem;
}
}
/* service section */

  .service-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
  }
        /* Base Styles */
        .services-header {
          overflow: hidden;
        }
        
        .letter-spacing-2 {
          letter-spacing: 2px;
        }
        
        
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
          .services-header h2 {
            font-size: 2.3rem;
          }
          
          .section-badge {
            font-size: 0.75rem;
            padding: 6px 12px;
          }
          
          .header-description .lead {
            font-size: 1.1rem;
          }
        }
        
        @media (max-width: 576px) {
          .services-header h2 {
            font-size: 2rem;
          }
          
          .title-underline {
            width: 80px;
          }
        }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .service-card:hover::before {
    transform: scaleX(1);
  }

  .icon-frame {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
  }

  .service-card:hover .icon-frame {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  }

  .service-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: grayscale(20%) contrast(110%) brightness(90%);
  }

  .service-card:hover .service-icon {
    filter: grayscale(0%) contrast(100%) brightness(100%);
    transform: scale(1.05);
  }

  .service-link {
    transition: all 0.3s ease;
  }

  .service-link:hover {
    background-color: var(--primary) !important;
    color: white !important;
    transform: translateY(-2px);
  }

  .bg-opacity-05 {
    opacity: 0.05;
  }

  .z-1 {
    z-index: 1;
  }

  .z-2 {
    z-index: 2;
  }

  @media (max-width: 768px) {
    .service-card {
      padding: 30px 20px;
    }
    
    .icon-frame {
      width: 100px;
      height: 100px;
      padding: 15px;
    }
  }
   /* Services Section Styles */
    .services-section {
        padding: 6rem 0;
    }
    
    .service-card {
        border-radius: 16px;
        transition: all 0.3s ease;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .service-icon-container {
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(var(--primary-rgb), 0.1);
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }
    
    .service-card:hover .service-icon-container {
        background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2), rgba(var(--secondary-rgb), 0.2));
    }
    
    .service-card:hover .service-icon {
        transform: scale(1.1);
    }
    
    .text-gradient {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* Portfolio Section */
.portfolio-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    background: transparent;
    border: 1px solid var(--light-gray);
    color: var(--dark-gray);
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-color: transparent;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
}

.portfolio-item.active {
    display: block;
}

.portfolio-item img {
    transition: transform 0.5s ease, filter 0.5s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.portfolio-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

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

.portfolio-category {
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background-color: var(--light);
}

.team-member {
    text-align: center;
    padding: 0 15px;
}

.team-img-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--white);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-img-container:hover .team-img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 1rem 0 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-img-container:hover .team-social {
    opacity: 1;
}

.team-social a {
    color: var(--white);
    margin: 0 0.25rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.team-social a:hover {
    color: var(--primary-light);
    transform: translateY(-3px);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    width: 20px;
    height: 20px;
}

/* Testimonials */
.testimonial-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.testimonial-card {
    padding: 2.5rem;
    border-radius: 16px;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: none;
    margin: 0 auto;
    max-width: 800px;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-light);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Contact Form */
.contact-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-color: var(--light);
}

.contact-form {
    background-color: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-control {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.8);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(236, 72, 153, 0.25);
    background-color: var(--white);
}

textarea.form-control {
    min-height: 150px;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background-color: var(--dark);
    color: var(--white);
    position: relative;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-links h5 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
    color: var(--white);
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.footer-links a {
    color: var(--medium-gray);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    margin-right: 0.75rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        padding: 2rem;
    }
    
    .carousel-control-prev {
        left: 0;
    }
    
    .carousel-control-next {
        right: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 8rem 0 6rem;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .team-img-container {
        width: 150px;
        height: 150px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .portfolio-filter {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}