:root {
    --primary-pink: #207FAC;
    --hover-pink: #1A6D95;
    --light-pink: #5AB1D8;
    --dark-pink: #155A7A;
    --gradient-light-pink: #66C2E8;
    --black: #333;
    --gray: #666;
    --light-gray: #f8f9fa;
    --white: #fff;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --transparent-black: rgba(0, 0, 0, 0.4);
    --transparent-white: rgba(255, 255, 255, 0.1);
    --gold: #FFD700;
        --gradient-light-blue-bg: linear-gradient(45deg, rgba(32, 127, 172, 0.1), rgba(26, 109, 149, 0.1));
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}

html,
body {
    overflow-x: hidden;
    width: 100vw;
}

header {
    background: var(--white);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 4px 6px var(--shadow-color);
    position: fixed;
    top: 0px;
    z-index: 50;
    width: 100%;
}

header nav ul {
    margin-bottom: 0px;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}
.logoimage {
    display: flex;
    width: auto; 
    height: auto; 
}

.logoimage img {
    width: 85px;  
    height: auto;  
}

/* ------------------- */
.logoimages img {
    width: 60px;  
    height: auto; 
}
.logoimages {
    display: flex; 
    width: auto; 
    height: auto;
}

.logo span {
    color: var(--primary-pink);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: black;
}

.contact-btn {
    background: var(--primary-pink);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle div {
    width: 25px;
    height: 3px;
    background: black;
    margin: 5px;
}

.hero {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.hero-text {
    max-width: 50%;
}

.highlight {
    color: var(--primary-pink);
}

.cta-btn {
    background: var(--primary-pink);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.bottom-circle {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 75px;
    background: var(--primary-pink);
    border-radius: 75px 75px 0 0;
}

.mobile-nav {
    display: none;
}

@media screen and (min-width: 1200px) {
    .hero-text h1 {
        font-size: 3rem;
    }
}
@media (max-width: 830px) {
    .hero {
        padding: 100px 50px 50px 50px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 130px 50px 50px 50px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: none;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .mobile-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 0rem 1rem;
        border-top: 1px solid #f0f0f0;
        display: flex;
        justify-content: space-between;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
        border-top-left-radius: 1rem;
        border-top-right-radius: 1rem;
        z-index: 1000;
    }

    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: var(--gray);
        font-size: 0.75rem;
        position: relative;
        padding: 0.5rem;
        flex: 1;
        transition: 0.3s ease;
    }

    .nav-item.active {
        color: var(--primary-pink);
    }

    .nav-item.active::before {
        content: '';
        position: absolute;
        top: -0.375rem;
        width: 2rem;
        height: 0.25rem;
        background: linear-gradient(to right,
                var(--gradient-light-pink),
                var(--primary-pink),
                var(--dark-pink)
            );
        border-radius: 1rem;
    }

    .nav-item i {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .nav-item:hover {
        color: var(--primary-pink);
        transform: scale(1.1);
    }

    .icon::before {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .home-icon::before {
        content: '🏠';
    }

    .about-icon::before {
        content: 'ℹ️';
    }

    .services-icon::before {
        content: '🔧';
    }

    .products-icon::before {
        content: '📦';
    }

    .projects-icon::before {
        content: '📋';
    }

    .contact-icon::before {
        content: '📞';
    }

    .nav-item.active {
        background: linear-gradient(to right, rgba(250, 204, 21, 0.1), rgba(244, 63, 94, 0.1), rgba(236, 72, 153, 0.1));
        border-radius: 0.75rem;
    }

    .content {
        padding: 1rem;
        padding-bottom: 5rem;
    }
}

/* Case Studies Section */
.case-studies {
    padding: 80px 0;
    position: relative;
    z-index: 40;
    background-color: #fafafa;
}

.case-studies-header {
    text-align: center;
    margin-bottom: 60px;
}

.case-studies-header h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 5px;
    font-weight: 500;
}

.case-studies-header h3 {
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin: 0;
    font-weight: 500;
}

.case-studies-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.case-study-card {
    display: flex;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 40;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px var(--shadow-color);
}

.case-study-images {
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-mockups {
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-img {
    width: auto;
    height: 235px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
    transition: all 0.3s ease;
}

.case-study-card:hover .device-img {
    transform: translateY(-5px);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
}

.case-study-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-study-content h4 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 12px;
    font-weight: 500;
}

.case-study-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.read-more {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--hover-pink);
    transform: translateX(5px);
}

.view-more-link {
    text-align: right;
    margin-top: 30px;
    padding-right: 20px;
}

.view-more-link a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.view-more-link a:hover {
    color: var(--hover-pink);
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .device-mockups {
        gap: 10px;
    }

    /* .device-img {
        height: 150px;
    } */

    .case-study-images {
        padding: 30px 20px;
    }

    .case-study-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .case-studies {
        padding: 40px 0;
    }

    .case-studies-header h2,
    .case-studies-header h3 {
        font-size: 2rem;
    }

    .case-study-card {
        flex-direction: column;
    }

    .case-study-images,
    .case-study-content {
        width: 100%;
    }

    .device-mockups {
        flex-direction: row;
        gap: 15px;
    }

    /* .device-img {
        height: 140px;
    } */

    .case-study-images {
        padding: 25px 15px;
    }

    .case-study-content {
        padding: 25px;
    }

    .case-study-content h4 {
        font-size: 1.3rem;
    }

    .case-study-content p {
        font-size: 0.9rem;
    }

    .view-more-link {
        text-align: center;
        margin-top: 25px;
        padding-right: 0;
    }
}

/*service card section*/

  
  .services-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
    position: relative;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
  }
  
  .service-card {
    padding: 2rem;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 4px 15px var(--shadow-color);
    height: 100%;
    transition: transform 0.3s ease;
    text-align: center;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
  }
  
  .service-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .service-card:hover .service-icon {
    transform: scale(1.1);
  }
  
  h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
  }
  
  p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    text-align: justify;
  }
  
  .learn-more {
    display: inline-block;
    font-size: 0.9rem;
    color: #999;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
    transition: color 0.3s ease;
  }
  
  .learn-more:hover {
    color: var(--primary-pink);
    border-color: var(--primary-pink);
  }
  
  .service-more {
    margin-left: 45%;
    margin-top: 30px;
    display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #207FAC;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius:50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-more:hover {
  background-color: #1B6A8F; /* Darker shade of #207FAC */
  transform: scale(1.05);
  color: #fff;
}

.service-more:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-pink);
}

  @media (max-width: 768px) {
    .services-grid {
      grid-template-columns: 1fr;
    }
  
    .service-card {
      margin-bottom: 1rem;
    }
  }
/* Custom Indicators */
.custom-indicators {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 5;
}

.custom-indicators [data-bs-target] {
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    background-color: transparent !important;
    border: 2px solid var(--primary-pink) !important;
    opacity: 1 !important;
    margin: 0 !important;
    transition: all 0.3s ease !important;
}

.custom-indicators .active {
    background-color: var(--primary-pink) !important;
    transform: scale(1.2);
}

/* Updated Carousel Controls to match nav-button style */
.custom-control {
    width: 40px;
    height: 40px;
    background-color: var(--white) !important;
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    border: 1px solid var(--primary-pink);
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev.custom-control {
    left: -60px;
}

.carousel-control-next.custom-control {
    right: -60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 100%;
    filter: invert(73%) sepia(32%) saturate(7076%) hue-rotate(308deg) brightness(101%) contrast(97%);
}

/* Remove hover styles */
.custom-control:hover {
    opacity: 1;
    background-color: var(--white) !important;
}

.custom-control:hover .carousel-control-prev-icon,
.custom-control:hover .carousel-control-next-icon {
    filter: invert(73%) sepia(32%) saturate(7076%) hue-rotate(308deg) brightness(101%) contrast(97%);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .carousel-control-prev.custom-control {
        left: -20px;
    }

    .carousel-control-next.custom-control {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .custom-control {
        width: 35px;
        height: 35px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 480px) {
    .custom-control {
        display: none;
    }
}

.section-reset {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.section-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--white);
    overflow-x: hidden;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    position: relative;
}

/* Decorative Circles */
.circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.circle-top {
    width: 120px;
    height: 120px;
    background-color: var(--primary-pink);
    opacity: 0.1;
    top: -60px;
    left: -60px;
}

.circle-bottom {
    width: 180px;
    height: 180px;
    background-color: var(--primary-pink);
    opacity: 0.1;
    bottom: -90px;
    right: -90px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.text-content {
    padding-right: 2rem;
}

.purple-line {
    width: 50px;
    height: 4px;
    background-color: var(--primary-pink);
    margin-bottom: 1.5rem;
}

.main-heading {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.sub-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.description {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: justify;
}

.pink-text {
    color: var(--primary-pink);
}

.see-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.see-more:hover {
    transform: translateX(5px);
}

.see-more-icon {
    margin-left: 8px;
}

.image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-color);
}

.feature-image {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--primary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button-icon {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

/* Navigation Buttons */
.nav-buttons {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 2;
}

.nav-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--primary-pink);
    color: var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: var(--primary-pink);
    color: var(--white);
}

.nav-button svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .text-content {
        padding-right: 0;
    }

    .main-heading {
        font-size: 2rem;
    }

    .sub-heading {
        font-size: 1.5rem;
    }

    .nav-buttons {
        position: relative;
        bottom: auto;
        right: auto;
        justify-content: center;
        margin-top: 2rem;
    }

    .circle-top {
        width: 80px;
        height: 80px;
        top: -40px;
        left: -40px;
    }

    .circle-bottom {
        width: 120px;
        height: 120px;
        bottom: -60px;
        right: -0px;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.8rem;
    color: var(--black);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 500;
    line-height: 1.2;
}

.title-emphasis {
    color: var(--black);
    font-weight: 500;
    display: block;
    margin-top: 5px;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 40px;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 40px;
    position: relative;
    padding: 0 60px;
    font-weight: 300;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-family: serif;
    font-size: 8rem;
    color: rgba(233, 77, 173, 0.1);
    position: absolute;
    line-height: 1;
}

.testimonial-text::before {
    left: -20px;
    top: -40px;
}

.testimonial-text::after {
    right: -20px;
    bottom: -80px;
    transform: rotate(180deg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    flex-direction: column;
}

.author-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
    margin-bottom: 8px;
}

.author-company {
    font-size: 1.1rem;
    color: var(--gray);
    margin: 0;
    font-weight: 400;
}

.rating {
    color: var(--gold);
    margin-top: 15px;
    font-size: 1.2rem;
    display: flex;
    gap: 5px;
}

/* Updated Author Thumbnails */
.testimonial-authors {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.author-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    box-shadow: 0 2px 8px var(--shadow-color);
    object-fit: cover;
    opacity: 0.6;
}

.author-thumbnail.active {
    border-color: var(--primary-pink);
    transform: scale(1.1);
    opacity: 1;
}

.author-thumbnail:hover {
    transform: scale(1.1);
    opacity: 1;
}

@media (max-width: 768px) {
    .testimonial-text {
        font-size: 1.2rem;
        padding: 0 40px;
    }

    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 6rem;
    }

    .author-name {
        font-size: 1.2rem;
    }

    .author-company {
        font-size: 1rem;
    }

    .author-thumbnail {
        width: 50px;
        height: 50px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes slideIn {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

/* Apply animations to elements */
.hero-text {
    animation: slideIn 1s ease-out;
}

.hero-image {
    animation: scaleIn 1s ease-out;
}

.service-card {
    animation: fadeIn 0.6s ease-out;
    animation-fill-mode: both;
}

.service-card:nth-child(1) {
    animation-delay: 0.2s;
}

.service-card:nth-child(2) {
    animation-delay: 0.4s;
}

.service-card:nth-child(3) {
    animation-delay: 0.6s;
}

.case-study-card {
    animation: fadeIn 0.8s ease-out;
    animation-fill-mode: both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: justify;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    animation: scaleIn 0.8s ease-out;
}

.cta-btn {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    background: var(--hover-pink);
}

.nav-links li a {
    position: relative;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-pink);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.contact-btn {
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    background: var(--hover-pink);
    box-shadow: 0 5px 15px rgba(214, 51, 132, 0.3);
}

.service-icon {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.play-button {
    animation: bounce 2s infinite;
    transition: background-color 0.3s ease;
}

.play-button:hover {
    background-color: var(--hover-pink);
}

.author-thumbnail {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.author-thumbnail:hover {
    transform: scale(1.2);
}

/* Live Animations */
/* @keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

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

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(214, 51, 132, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(214, 51, 132, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(214, 51, 132, 0);
    }
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

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

    100% {
        background-position: 200% 50%;
    }
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(214, 51, 132, 0.3),
            0 0 0 1px rgba(214, 51, 132, 0.3),
            0 0 0 3px rgba(214, 51, 132, 0.3);
    }

    100% {
        box-shadow: 0 0 0 1px rgba(214, 51, 132, 0.3),
            0 0 0 3px rgba(214, 51, 132, 0.3),
            0 0 0 5px rgba(214, 51, 132, 0);
    }
}

/* Apply live animations */
/* .hero-image img {
    animation: float 6s ease-in-out infinite;
} */

.contact-btn {
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.bottom-circle {
    background: linear-gradient(-45deg, var(--primary-pink), var(--hover-pink), var(--light-pink));
    background-size: 200% 200%;
    animation: gradientBG 15s ease infinite;
}

.service-icon {
    position: relative;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    background-size: 200% 100%;
    animation: shine 3s infinite;
}

.case-study-card {
    position: relative;
    overflow: hidden;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    transform: rotate(45deg);
    animation: shine 6s infinite;
    pointer-events: none;
}

.play-button {
    animation: ripple 1.5s linear infinite;
}

/* .testimonial-content {
    animation: float 8s ease-in-out infinite;
} */

.rating .fas {
    animation: pulse 2s infinite;
}

.rating .fas:nth-child(2) {
    animation-delay: 0.4s;
}

.rating .fas:nth-child(3) {
    animation-delay: 0.8s;
}

.rating .fas:nth-child(4) {
    animation-delay: 1.2s;
}

.rating .fas:nth-child(5) {
    animation-delay: 1.6s;
}

.section-title {
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-pink), var(--hover-pink));
    background-size: 200% 100%;
    animation: gradientBG 3s ease infinite;
}

/* Hover pause animations */
.hero-image:hover img {
    animation-play-state: paused;
}

.contact-btn:hover {
    animation-play-state: paused;
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Add intersection observer animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease-out;
}

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

/* Animated Background Styles */
/* .animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-circle {
    position: absolute;
    background: var(--gradient-light-blue-bg);
    border-radius: 50%;
    animation: floatAround 20s linear infinite;
}

.floating-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 5%;
    animation-delay: -5s;
}

.floating-circle:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 30%;
    animation-delay: -10s;
}

.floating-circle:nth-child(4) {
    width: 250px;
    height: 250px;
    top: 20%;
    left: 20%;
    animation-delay: -15s;
}

.floating-circle:nth-child(5) {
    width: 180px;
    height: 180px;
    bottom: 20%;
    right: 20%;
    animation-delay: -7s;
}

@keyframes floatAround {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(50px, 50px) rotate(90deg) scale(1.1);
    }

    50% {
        transform: translate(0, 100px) rotate(180deg) scale(1);
    }

    75% {
        transform: translate(-50px, 50px) rotate(270deg) scale(0.9);
    }

    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
    }
} */

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    background: rgba(214, 51, 132, 0.2);
    border-radius: 50%;
    pointer-events: none;
}

/* Add shimmer effect to sections */
.section-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--transparent-white) 0%, transparent 50%);
    transform: rotate(45deg);
    animation: shimmerRotate 12s linear infinite;
    pointer-events: none;
}

@keyframes shimmerRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Add floating animation to specific elements */
.service-icon,
.case-study-card img,
.testimonial-authors img {
    animation: floatElement 4s ease-in-out infinite;
}

@keyframes floatElement {

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

    50% {
        transform: translateY(-10px);
    }
}

/* Mouse trail effect */
.mouse-trail {
    position: fixed;
    width: 10px;
    height: 10px;
    background: rgba(214, 51, 132, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    animation: trailFade 1s ease-out forwards;
}

@keyframes trailFade {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* Products Section Styles */
.products-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--white), var(--light-gray));
    position: relative;
    z-index: 40;
    overflow: hidden;
}

.products-header {
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    margin-top: 15px;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 40;
    animation: fadeIn 0.6s ease-out;
    animation-fill-mode: both;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-pink);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 2;
    animation: badgePulse 2s infinite;
}

.product-badge.new {
    background: #0dcaf0;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--transparent-black);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.preview-btn {
    background: var(--white);
    color: var(--primary-pink);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    transform: translateY(20px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover .preview-btn {
    transform: translateY(0);
}

.product-content {
    padding: 30px;
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--black);
}

.product-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.product-features span {
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features i {
    color: var(--primary-pink);
    font-size: 1.1rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--black);
}

.period {
    color: var(--gray);
    font-size: 1rem;
}

.tech-stack-subtitle {
    text-align: center;
}

.product-btn {
    background: transparent;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-btn:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-2px);
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    .section-subtitle, .tech-stack-subtitle {
        text-align: start;
    }

    .product-content {
        padding: 20px;
    }

    .product-content h3 {
        font-size: 1.3rem;
    }

    .price {
        font-size: 1.5rem;
    }
}

/* Add shimmer effect to product cards */
.product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            transparent,
            var(--transparent-white),
            transparent);
    transform: rotate(30deg);
    animation: shimmerProduct 3s infinite;
    pointer-events: none;
}

@keyframes shimmerProduct {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }

    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

/* View More Section Styles */
.view-more-container {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, var(--light-pink), var(--transparent-white));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    animation: patternFloat 20s linear infinite;
}

.view-more-content {
    position: relative;
    z-index: 2;
}

.view-more-content h3 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 25px;
}

.view-more-btn {
    background: var(--primary-pink);
    color: var(--white);
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 77, 173, 0.2);
}

.view-more-btn i {
    transition: transform 0.3s ease;
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 77, 173, 0.3);
    background: var(--hover-pink);
}

.view-more-btn:hover i {
    transform: translateX(5px);
}

.view-more-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(233, 77, 173, 0.2);
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background: var(--primary-pink);
    transform: scale(1.3);
}

@keyframes patternFloat {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 768px) {
    .view-more-container {
        margin-top: 40px;
        padding: 30px 20px;
    }

    .view-more-content h3 {
        font-size: 1.5rem;
    }

    .view-more-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Approach Section Styles */
.approach-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    z-index: 40;
    overflow: hidden;
}

.approach-header {
    margin-bottom: 60px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.approach-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: justify;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-pink);
    transition: height 0.4s ease;
}

.approach-card:hover::before {
    height: 100%;
}

.approach-icon {
    width: 60px;
    height: 60px;
    background: rgba(77, 160, 233, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.approach-icon i {
    font-size: 24px;
    color: var(--primary-pink);
    transition: all 0.4s ease;
}

.approach-card:hover .approach-icon {
    background: var(--primary-pink);
    transform: rotate(10deg);
}

.approach-card:hover .approach-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.approach-card h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.approach-card:hover h3 {
    color: var(--primary-pink);
}

.approach-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

.approach-steps {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.approach-steps span {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--light-pink);
    transition: all 0.3s ease;
}

.approach-card:hover .approach-steps span {
    color: var(--hover-pink);
}

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(233, 77, 173, 0.1);
    margin-left: 15px;
    position: relative;
    overflow: hidden;
}

.step-line::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-pink);
    transition: transform 0.4s ease;
}

.approach-card:hover .step-line::after {
    transform: translateX(100%);
}

/* Add floating animation for approach cards */
@keyframes floatCard {

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

    50% {
        transform: translateY(-8px);
    }
}

.approach-card {
    animation: floatCard 4s ease-in-out infinite;
    animation-play-state: paused;
}

.approach-card:hover {
    animation-play-state: running;
}

/* Responsive styles for approach section */
@media (max-width: 768px) {
    .approach-section {
        padding: 60px 0;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .approach-card {
        padding: 30px 25px;
    }

    .approach-steps span {
        font-size: 2rem;
    }
}




.tech-stack-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--white), var(--light-gray));
    position: relative;
    z-index: 40;
    overflow: hidden;
}

.tech-stack-header {
    margin-bottom: 60px;
}

.tech-stack-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    margin-top: 15px;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.tech-stack-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    animation: fadeIn 0.6s ease-out;
    animation-fill-mode: both;
    padding: 30px;
}

.tech-stack-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.tech-stack-icon {
    width: 60px;
    height: 60px;    
    background: rgba(77, 160, 233, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.tech-stack-card:hover .tech-stack-icon {
    background: var(--primary-pink);
    transform: rotate(10deg);
}

.tech-stack-card:hover .tech-stack-icon svg {
    color: var(--white);
    transform: scale(1.1);
}

.tech-stack-card h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-stack-card:hover h3 {
    color: var(--primary-pink);
}

.tech-stack-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    transition: all 0.3s ease;
}

.tech-item svg {
    color: var(--primary-pink);
    transition: all 0.3s ease;
}

.tech-stack-card:hover .tech-item {
    transform: translateX(5px);
}

/* Add shimmer effect */
.tech-stack-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            transparent,
            var(--transparent-white),
            transparent);
    transform: rotate(30deg);
    animation: shimmerTechStack 3s infinite;
    pointer-events: none;
}

@keyframes shimmerTechStack {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }

    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Floating animation */
@keyframes floatCard {

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

    50% {
        transform: translateY(-8px);
    }
}

.tech-stack-card {
    animation: floatCard 4s ease-in-out infinite;
    animation-play-state: paused;
}

.tech-stack-card:hover {
    animation-play-state: running;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tech-stack-section {
        padding: 60px 0;
    }

    .tech-stack-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .tech-stack-card {
        padding: 25px;
    }

    .tech-stack-card h3 {
        font-size: 1.3rem;
    }
}

.tech-stack-section {
    position: relative;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background-color: var(--primary-pink);
    animation: moveCircle 10s infinite;
}

.circle-top {
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    animation-delay: 2s;
}

.circle-bottom {
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    animation-delay: 5s;
}

@keyframes moveCircle {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(200px, 200px);
    }

    100% {
        transform: translate(0, 0);
    }
}



.featured-resources {
    padding: 80px 0;
    background: linear-gradient(to bottom right, var(--white), var(--light-gray));
    position: relative;
}

.resources-header {
    text-align: center;
    margin-bottom: 50px;
}

.resources-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    margin-top: 15px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px;
}

.resource-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    z-index: 40;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--shadow-color);
}

.resource-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.resource-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, var(--transparent-black));
}

.resource-content {
    padding: 25px;
    text-align: justify;
}

.resource-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(233, 77, 173, 0.1);
    color: var(--primary-pink);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.resource-card:hover .resource-tag {
    background: var(--primary-pink);
    color: var(--white);
}

.resource-title {
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.4;
}

.resource-description {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.resource-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.resource-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-size: cover;
}

.author-name {
    font-size: 0.95rem;
    color: var(--black);
}

.resource-date {
    color: #888;
    font-size: 0.9rem;
}

/* Hover effect for images */
.resource-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
    transition: all 0.75s;
}

.resource-card:hover .resource-image::before {
    animation: shine 1s;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .featured-resources {
        padding: 50px 0;
    }

    .resources-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .resource-content {
        padding: 20px;
    }

    .resource-title {
        font-size: 1.2rem;
    }
}



.about-section {
    background-color: #f7f7f7;
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    margin-bottom: 40px;
    text-align: justify;
}

.subsection-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.subsection-description {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: justify;
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-list li {
    margin-bottom: 10px;
}

.value-list li i {
    margin-right: 10px;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

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

    .section-title {
        font-size: 24px;
    }

    .about-image {
        height: 100%;
    }
}


.team-section {
    background-color: #f7f7f7;
    position: relative;
    z-index: 40;
    padding: 80px 0;
}

.team-member-card {
    background-color: var(--white);
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px var(--shadow-color);
}

.team-member-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-member-info {
    padding: 20px;
}

.team-member-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.team-member-position {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 10px;
}

.team-member-description {
    font-size: 14px;
    color: var(--gray);
}

@media (max-width: 768px) {
    .team-section {
        padding: 20px 0;
    }

    .team-member-card {
        margin-bottom: 10px;
    }
}




.contact-us {
    padding: 80px 0;
    background-color: #f7f7f7;
}

.contact-us .container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-us .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.contact-us .col-md-6 {
    flex-basis: 45%;
}

.contact-us .col-lg-4 {
    flex-basis: 30%;
}

.contact-us h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-us ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-us li {
    margin-bottom: 10px;
}

.contact-us i {
    margin-right: 10px;
}

.contact-us a {
    color: #337ab7;
    text-decoration: none;
}

.contact-us form {
    margin-top: 20px;
}

.contact-us .form-group {
    margin-bottom: 20px;
}

.contact-us label {
    display: block;
    margin-bottom: 10px;
}

.contact-us input,
.contact-us textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
}

.contact-us button[type="submit"] {
    background-color: var(--primary-pink);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-us button[type="submit"]:hover {
    background-color: #eb57a1;
}

/* Responsive styles */

@media (max-width: 768px) {
    .contact-us .col-md-6 {
        flex-basis: 100%;
    }

    .contact-us .col-lg-4 {
        flex-basis: 100%;
    }
}

@media (max-width: 480px) {
    .contact-us .row {
        flex-direction: column;
    }

    .contact-us .col-md-6,
    .contact-us .col-lg-4 {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {

    /* Existing styles */
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .carousel-indicators {
        bottom: -30px;
    }

    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
    }

    /* Update service-card to have a larger bottom gap */
    .service-card {
        margin-bottom: 2rem;
        /* Increased from 1rem to 2rem for more noticeable gap */
    }

    /* Ensure the carousel items have proper spacing */
    .carousel-item .row {
        row-gap: 2rem;
        /* Adds gap between rows in the carousel */
    }
}


/* Newsletter Styles */
.newsletter {
    margin-top: 20px;
}

.newsletter h5 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.newsletter form {
    display: flex;
    gap: 10px;
}

.newsletter input {
    padding: 10px;
    border: none;
    border-radius: 25px;
    flex: 1;
    background: var(--transparent-white);
    color: var(--white);
    outline: none;
    transition: all 0.3s ease;
}

.newsletter input:focus {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(214, 51, 132, 0.3);
}

.newsletter .subscribe-btn {
    background: var(--primary-pink);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
}

.newsletter .subscribe-btn:hover {
    background: var(--hover-pink);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 51, 132, 0.5);
}

/* Social Links Styles */
.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--transparent-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    /* transition: all 0.3s ease; */
}

.social-icon:hover {
    background: var(--primary-pink);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.copyright {
    background: rgba(0, 0, 0, 0.3);
    color: #ddd;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

/* Animations */
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {

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

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {

    .social-links {
        justify-content: center;
    }

    .newsletter form {
        flex-direction: column;
    }

    .newsletter input {
        margin-bottom: 10px;
    }
}




/* Overlay Menu Styles (continued from previous cutoff) */
header {
    background: var(--white);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 4px 6px var(--shadow-color);
    position: fixed;
    top: 0px;
    z-index: 50;
    width: 100%;
}

header nav ul {
    margin-bottom: 0px;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

.logo span {
    color: var(--primary-pink);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    text-decoration: none;
    color: var(--black);
    font-size: 1rem;
    font-weight: 500;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--primary-pink);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-pink);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Menu Toggle for Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 60;
}

.menu-toggle div {
    width: 25px;
    height: 3px;
    background: var(--black);
    margin: 5px;
    transition: all 0.3s ease;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }


    .menu-toggle.active div:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active div:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active div:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .contact-btn {
        display: none;
    }
}

/* Ensure all animations are closed */
@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Close out any remaining open sections */
html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    overflow-x: hidden;
}

/* Final touches for consistency */
.section-container::after {
    content: '';
    clear: both;
    display: table;
}  

/* Enhanced Overlay Menu */
.overlay-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(25, 0, 35, 0.95));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 40;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(8px);
}

.overlay-menu.active {
    left: 0;
}

.overlay-menu-content {
    position: relative;
    width: 80%;
    max-width: 800px;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.overlay-menu.active .overlay-menu-content {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
}

.overlay-menu-close {
    position: absolute;
    top: -60px;
    right: 0;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
}

.overlay-menu-close:hover {
    transform: rotate(90deg);
}

.overlay-menu-close svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 5px rgba(214, 51, 132, 0.7));
}

.overlay-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.overlay-menu-links li {
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.overlay-menu.active .overlay-menu-links li {
    transform: translateY(0);
    opacity: 1;
}

/* Staggered animation delay for menu items */
.overlay-menu.active .overlay-menu-links li:nth-child(1) { transition-delay: 0.1s; }
.overlay-menu.active .overlay-menu-links li:nth-child(2) { transition-delay: 0.2s; }
.overlay-menu.active .overlay-menu-links li:nth-child(3) { transition-delay: 0.3s; }
.overlay-menu.active .overlay-menu-links li:nth-child(4) { transition-delay: 0.4s; }
.overlay-menu.active .overlay-menu-links li:nth-child(5) { transition-delay: 0.5s; }
.overlay-menu.active .overlay-menu-links li:nth-child(6) { transition-delay: 0.6s; }

.overlay-menu-item {
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    display: block;
    padding: 10px 20px;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.overlay-menu-item:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-pink);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.overlay-menu-item:hover {
    color: var(--primary-pink);
    transform: translateY(-3px);
    text-shadow: 0 10px 20px rgba(214, 51, 132, 0.3);
}

.overlay-menu-item:hover:before {
    width: 80%;
}

/* Add a subtle glow effect on hover */
.overlay-menu-item:hover {
    text-shadow: 0 0 10px rgba(214, 51, 132, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .overlay-menu-item {
        font-size: 1.5rem;
    }
    
    .overlay-menu-links {
        gap: 15px;
    }
    /* .contact-btn {
        display: flex;
    } */
}

@media (max-width: 480px) {
    .overlay-menu-item {
        font-size: 1.2rem;
    }
    
    .overlay-menu-links {
        gap: 10px;
    }
}

.carousel-item > div > div {
    
    position: relative;
    z-index: 40;
}

.team-member{
    position: relative;
    z-index: 40;
}

.footer {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    color: #E0E0E0;
    padding: 4rem 0 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer .col-md-4 {
    flex: 1;
    min-width: 250px;
    padding: 0 15px;
    text-align: center;
}

.footer h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-pink), var(--hover-pink));
    transition: width 0.3s ease;
}

.footer .col-md-4:hover h4::after {
    width: 80px;
}

.footer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #D1D5DB;
    margin-bottom: 1.5rem;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li {
    margin-bottom: 0.75rem;
}

.footer a {
    color: #B0C4DE;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer a:hover {
    color: #cccccc;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-links .social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #FFFFFF; /* Hover color to match the logo */
}

.copyright {
    background: rgba(0, 0, 0, 0.3);
    color: #B0C4DE;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 2;
}
.copyright p{
    text-align: center;
}
.copyright a {
    color: var(--light-pink);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: var(--hover-pink);
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
        margin-bottom: 4rem;
    }

    .footer .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer .col-md-4 {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .footer h4 {
        font-size: 1.3rem;
    }

    .footer p,
    .footer li {
        font-size: 0.9rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .copyright {
        font-size: 0.8rem;
    }
}

/* @keyframes footerGlow {
    0% { box-shadow: 0 0 5px rgba(214, 51, 132, 0.2); }
    50% { box-shadow: 0 0 15px rgba(214, 51, 132, 0.4); }
    100% { box-shadow: 0 0 5px rgba(214, 51, 132, 0.2); }
} */

.footer .col-md-4:hover {
    animation: footerGlow 1.5s ease-in-out infinite;
}