/* ========================================
   Global Styles & Variables
======================================== */

:root {
    --primary-color: #E91E63;
    --primary-dark: #C2185B;
    --primary-light: #F06292;
    --secondary-color: #2C2C2C;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ========================================
   Navigation Bar
======================================== */

.navbar {
    padding: 12px 0;
    transition: var(--transition);
}

.navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-logo {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .navbar-logo {
    height: 60px;
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 400;
    font-size: 17px;
    padding: 10px 25px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-menu-wrapper .navbar-nav .nav-link {
    padding: 10px 25px !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link:hover::after {
    width: 60%;
}

.navbar-social {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: 30px;
}

.navbar-menu-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-nav {
    display: flex;
    gap: 0;
    max-width: 800px;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 19px;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Custom Hamburger Menu - Mobile */
.custom-toggler {
    border: none;
    width: 40px;
    height: 40px;
    position: relative;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.custom-toggler span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
}

.custom-toggler:hover span {
    background: var(--primary-color);
}

.custom-toggler:focus {
    box-shadow: none;
    outline: none;
}

.custom-toggler:active,
.custom-toggler:focus-visible {
    transform: none;
}

/* Custom Hamburger Menu - Desktop */
.custom-toggler-desktop {
    border: none;
    width: 40px;
    height: 40px;
    position: relative;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-left: 20px;
    cursor: pointer;
}

.custom-toggler-desktop span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
}

.custom-toggler-desktop:hover span {
    background: var(--primary-color);
}

.custom-toggler-desktop:focus {
    box-shadow: none;
    outline: none;
}

.custom-toggler-desktop:active,
.custom-toggler-desktop:focus-visible {
    transform: none;
}

/* ========================================
   Mobile Menu
======================================== */

.mobile-menu {
    background: #000000;
    width: 280px !important;
}

.mobile-menu .offcanvas-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo-img {
    height: 50px;
    width: auto;
}

.btn-close-mobile {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    cursor: pointer;
}

.btn-close-mobile:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.mobile-menu .offcanvas-body {
    padding: 20px;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    margin-bottom: 5px;
}

.mobile-nav-link {
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
    padding: 15px 20px;
    display: block;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    background: rgba(233, 30, 99, 0.1);
    color: var(--primary-color);
}

/* ========================================
   Sidebar Menu
======================================== */

.sidebar-menu {
    background: #000000;
    width: 400px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-menu .offcanvas-header {
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-logo-img {
    height: 60px;
    width: auto;
}

.btn-close-sidebar {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    cursor: pointer;
}

.btn-close-sidebar:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.sidebar-menu .offcanvas-body {
    padding: 40px 30px;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sidebar-section {
    margin-bottom: 40px;
}

.sidebar-title {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.sidebar-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.sidebar-text a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-text a:hover {
    color: var(--primary-color);
}

.sidebar-newsletter {
    margin-top: auto;
    margin-bottom: 40px;
}

.sidebar-form .input-group {
    position: relative;
    display: flex;
}

.sidebar-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 15px 60px 15px 20px;
    border-radius: 5px;
    font-size: 15px;
    width: 100%;
}

.sidebar-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    color: var(--white);
    outline: none;
    box-shadow: none;
}

.sidebar-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-submit-sidebar {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit-sidebar:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.05);
}

.sidebar-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sidebar-social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.sidebar-social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* ========================================
   Hero Section
======================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

/* Hero Carousel Styles */
#heroCarousel {
    width: 100%;
    height: 100%;
}

#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    width: 100%;
    height: 100%;
}

#heroCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Carousel Controls - Hidden */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    display: none;
}

/* Carousel Indicators */
#heroIndicators.carousel-indicators {
    bottom: 40px;
    z-index: 100;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    position: absolute;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: auto;
    display: flex;
    justify-content: center;
}

#heroIndicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background-color: transparent;
    opacity: 0.7;
    transition: all 0.3s ease;
    margin: 0 5px;
    cursor: pointer;
    pointer-events: auto;
}

#heroIndicators button:hover {
    opacity: 1;
    transform: scale(1.2);
    border-color: var(--primary);
}

#heroIndicators button.active {
    background-color: var(--primary);
    border-color: var(--primary);
    opacity: 1;
    width: 40px;
    border-radius: 10px;
}

/* Responsive Carousel Styles */
@media (max-width: 768px) {
    #heroIndicators.carousel-indicators {
        bottom: 20px;
    }

    #heroIndicators button {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }

    #heroIndicators button.active {
        width: 30px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 80px;
    transform: translateZ(0);
    backface-visibility: hidden;
    pointer-events: none;
}

.hero-content * {
    pointer-events: auto;
}

.hero-slides-wrapper {
    position: relative;
    min-height: 250px;
    width: 100%;
}

.hero-slide-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.8s ease-in-out, visibility 0s linear 0.8s, transform 0.8s ease-in-out;
    pointer-events: none;
    transform: translateY(20px);
    z-index: 1;
}

.hero-slide-content.active {
    opacity: 1;
    visibility: visible;
    position: absolute;
    pointer-events: auto;
    transform: translateY(0);
    z-index: 2;
    transition: opacity 0.8s ease-in-out 0.3s, visibility 0s linear 0s, transform 0.8s ease-in-out 0.3s;
}

.hero-slide-content .fade-in-up {
    animation: none;
    opacity: 1;
    transform: none;
}

.hero-slide-content.active .fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.hero-slide-content.active .delay-1 {
    animation-delay: 0.5s;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 300;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
}

.text-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0;
    display: inline-block;
    position: relative;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
}

.hero-arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    margin-left: 30px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
    vertical-align: middle;
}

.hero-arrow-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1) rotate(45deg);
    color: var(--white);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    margin: 0 auto;
    animation: scrollLine 2s infinite;
}

/* ========================================
   About Hero Section
======================================== */

.about-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
    width: 100%;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 400;
}

.about-hero-title {
    font-size: 5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.about-hero-arrow-btn {
    width: 80px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 7px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
    flex-shrink: 0;
    margin-left: 20px;
    position: relative;
}

.about-hero-arrow-btn::before {
    content: '';
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 7px;
    transform: translateY(-50%);
    transition: var(--transition);
}

.about-hero-arrow-btn i {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    color: var(--primary-color);
    font-size: 16px;
    transition: var(--transition);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-arrow-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.6);
}

.about-hero-arrow-btn:hover::before {
    width: 38px;
    height: 38px;
}

.about-hero-arrow-btn:hover i {
    color: var(--primary-dark);
}

/* ========================================
   Service Hero Section
======================================== */

.service-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding: 150px 0 100px;
}

.service-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.service-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
}

.service-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 800px;
}

.service-hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-hero-title-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.service-hero-title {
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1;
}

.service-hero-arrow-btn {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-hero-arrow-btn i {
    font-size: 1.5rem;
    color: #fff;
    transition: all 0.3s ease;
}

.service-hero-arrow-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.service-hero-arrow-btn:hover i {
    color: var(--primary-color);
}

/* ========================================
   Services Overview Section
======================================== */

.services-overview-section {
    background: #EEEEEE;
    padding: 100px 0;
}

.services-overview-image {
    margin-top: 40px;
}

.services-overview-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 400px;
}

.services-overview-content {
    padding-left: 60px;
}

.services-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}

.services-badge {
    display: inline-block;
}

.services-badge-line {
    height: 1px;
    background: linear-gradient(to right, #E91E63 0%, rgba(233, 30, 99, 0.3) 50%, transparent 100%);
    flex: 1;
    max-width: 100px;
}

.services-overview-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    margin-top: 0;
    line-height: 1.3;
    max-width: 600px;
}

.services-overview-description {
    font-size: 0.95rem;
    color: #7a7a7a;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 650px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #333333;
    font-size: 0.95rem;
}

.services-list-item i {
    color: #E91E63;
    font-size: 6px;
    flex-shrink: 0;
}

.services-list-item span {
    font-weight: 400;
    color: #333333;
    line-height: 1.5;
}

/* ========================================
   Service Intro Section (Services Page)
======================================== */

.service-intro-section {
    background: #EEEEEE;
    padding: 100px 0;
}

.service-intro-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}

.service-intro-badge {
    background: #E91E63;
    color: #fff;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    display: inline-block;
}

.service-intro-badge-line {
    height: 1px;
    background: linear-gradient(to right, #E91E63 0%, rgba(233, 30, 99, 0.3) 50%, transparent 100%);
    flex: 1;
    max-width: 100px;
}

.service-intro-image {
    margin-top: 40px;
}

.service-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 350px;
    opacity: 0.4;
}

.service-intro-content {
    padding-left: 60px;
}

.service-intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    margin-top: 0;
    line-height: 1.3;
    max-width: 600px;
}

.service-intro-description {
    font-size: 0.95rem;
    color: #7a7a7a;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 650px;
}

.service-intro-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-intro-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #333333;
    font-size: 0.95rem;
}

.service-intro-list-item i {
    color: #E91E63;
    font-size: 6px;
    flex-shrink: 0;
}

.service-intro-list-item span {
    font-weight: 400;
    color: #333333;
    line-height: 1.5;
}

/* ========================================
   Web Design Section (web-design.html)
======================================== */

.web-design-back-section {
    padding: 40px 0 20px;
    background: #fff;
}

.web-design-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.web-design-back-btn:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateX(-5px);
}

.web-design-back-btn i {
    font-size: 0.9rem;
    transform: rotate(180deg);
}

.web-design-grid-section {
    background: #fff;
    padding: 60px 0 80px;
}

.web-design-item {
    margin-bottom: 40px;
    position: relative;
}

.web-design-image {
    overflow: hidden;
    border-radius: 15px;
    height: 350px;
}

.web-design-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.web-design-item:hover .web-design-image img {
    transform: scale(1.05);
}

.web-design-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0px;
    background: rgba(0, 0, 0, 47%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.web-design-item:hover .web-design-hover-overlay {
    opacity: 1;
    visibility: visible;
}

.web-design-hover-content {
    text-align: center;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.web-design-item:hover .web-design-hover-content {
    transform: translateY(0);
}

.web-design-hover-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.web-design-hover-subtitle {
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 15px;
    opacity: 0.9;
}

.web-design-hover-description {
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.85;
}

.web-design-visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.web-design-visit-btn:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateX(5px);
}

.web-design-visit-btn i {
    font-size: 0.85rem;
}

/* ========================================
   Branding Page Styles
======================================== */

.branding-back-section {
    padding: 40px 0 20px;
    background: #fff;
}

.branding-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.branding-back-btn:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateX(-5px);
}

.branding-back-btn i {
    font-size: 0.9rem;
    transform: rotate(180deg);
}

.branding-grid-section {
    background: #fff;
    padding: 60px 0 80px;
}

.branding-item {
    margin-bottom: 40px;
    position: relative;
}

.branding-image {
    overflow: hidden;
    border-radius: 15px;
    height: 350px;
}

.branding-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.branding-item:hover .branding-image img {
    transform: scale(1.05);
}

.branding-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0px;
    background: rgba(0, 0, 0, 47%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.branding-item:hover .branding-hover-overlay {
    opacity: 1;
    visibility: visible;
}

.branding-hover-content {
    text-align: center;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.branding-item:hover .branding-hover-content {
    transform: translateY(0);
}

.branding-hover-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.branding-item {
    cursor: pointer;
}

/* ========================================
   Lightbox Modal Styles
======================================== */

.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: lightboxZoomIn 0.3s ease;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-caption {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 20px;
    text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.lightbox-close {
    top: 30px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* ========================================
   Mobile App Designs Page Styles
======================================== */

.mobapp-back-section {
    padding: 40px 0 20px;
    background: #fff;
}

.mobapp-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobapp-back-btn:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateX(-5px);
}

.mobapp-back-btn i {
    font-size: 0.9rem;
    transform: rotate(180deg);
}

.mobapp-grid-section {
    background: #fff;
    padding: 60px 0 80px;
}

.mobapp-item {
    margin-bottom: 40px;
    position: relative;
}

.mobapp-image {
    overflow: hidden;
    border-radius: 15px;
    height: 350px;
}

.mobapp-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mobapp-item:hover .mobapp-image img {
    transform: scale(1.05);
}

.mobapp-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0px;
    background: rgba(0, 0, 0, 47%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobapp-item:hover .mobapp-hover-overlay {
    opacity: 1;
    visibility: visible;
}

.mobapp-hover-content {
    text-align: center;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.mobapp-item:hover .mobapp-hover-content {
    transform: translateY(0);
}

.mobapp-hover-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.mobapp-hover-subtitle {
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 15px;
    opacity: 0.9;
}

.mobapp-hover-description {
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.85;
}

.mobapp-visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobapp-visit-btn:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateX(5px);
}

.mobapp-visit-btn i {
    font-size: 0.85rem;
}

/* ========================================
   Other Designs Page Styles
======================================== */

.other-designs-back-section {
    padding: 40px 0 20px;
    background: #fff;
}

.other-designs-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.other-designs-back-btn:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateX(-5px);
}

.other-designs-back-btn i {
    font-size: 0.9rem;
    transform: rotate(180deg);
}

.other-designs-grid-section {
    background: #fff;
    padding: 60px 0 80px;
}

.other-designs-item {
    margin-bottom: 40px;
    position: relative;
}

.other-designs-image {
    overflow: hidden;
    border-radius: 15px;
    height: 350px;
}

.other-designs-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.other-designs-item:hover .other-designs-image img {
    transform: scale(1.05);
}

.other-designs-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0px;
    background: rgba(0, 0, 0, 47%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.other-designs-item:hover .other-designs-hover-overlay {
    opacity: 1;
    visibility: visible;
}

.other-designs-hover-content {
    text-align: center;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.other-designs-item:hover .other-designs-hover-content {
    transform: translateY(0);
}

.other-designs-hover-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.other-designs-hover-subtitle {
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 15px;
    opacity: 0.9;
}

.other-designs-hover-description {
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.85;
}

.other-designs-visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.other-designs-visit-btn:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateX(5px);
}

.other-designs-visit-btn i {
    font-size: 0.85rem;
}

/* ========================================
   Blog Grid Section
======================================== */

.blog-grid-section {
    background: #fff;
    padding: 80px 0;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card {
    background: transparent;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.blog-card-image {
    overflow: hidden;
    border-radius: 15px;
}

.blog-card-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-link:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 25px 0 0;
}

.blog-card-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
    font-weight: 400;
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--primary-color);
}

.blog-card-link:hover .blog-card-title {
    color: var(--primary-color);
}

/* ========================================
   Blog Details Section
======================================== */

.blog-details-section {
    background: #fff;
    padding: 60px 0 80px;
}

.blog-details-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.blog-details-back-btn:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateX(-5px);
}

.blog-details-back-btn i {
    font-size: 0.8rem;
    transform: rotate(180deg);
}

.blog-details-featured-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.blog-details-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.blog-details-content {
    /* max-width: 900px; */
    margin: 0 auto;
}

.blog-details-intro {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.blog-details-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.4;
}

.blog-details-step {
    margin-bottom: 30px;
}

.blog-details-step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.blog-details-step-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
    font-style: italic;
}

.blog-details-step-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

.blog-details-step-text + .blog-details-step-text {
    margin-top: 15px;
}

/* ========================================
   Portfolio Grid Section
======================================== */

.portfolio-grid-section {
    background: #fff;
    padding: 80px 0;
}

.portfolio-grid-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.portfolio-grid-item {
    margin-bottom: 40px;
}

.portfolio-grid-image {
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
    height: 350px;
}

.portfolio-grid-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-grid-item:hover .portfolio-grid-image img {
    transform: scale(1.05);
}

.portfolio-grid-link:hover .portfolio-grid-image img {
    transform: scale(1.05);
}

.portfolio-grid-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin: 0;
    padding: 0;
    transition: color 0.3s ease;
}

.portfolio-grid-link:hover .portfolio-grid-title {
    color: var(--primary-color);
}

/* ========================================
   Excellence Section
======================================== */

.excellence-section {
    background: #000000;
    padding: 100px 0;
}

.excellence-content {
    color: var(--white);
}

.excellence-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.3;
}

.excellence-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 35px;
}

.excellence-features {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.excellence-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.excellence-circle-icon {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.excellence-feature-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.excellence-stats {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin-top: 40px;
    padding-top: 30px;
    position: relative;
}

.excellence-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.excellence-stat-item {
    text-align: left;
    flex: 1;
    position: relative;
    padding-left: 30px;
}

.excellence-stat-item:first-child {
    padding-left: 0;
}

.excellence-stat-item:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.excellence-stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.excellence-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.3;
    white-space: normal;
}

.excellence-image {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.excellence-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.excellence-image-right {
    min-height: 350px;
}

/* ========================================
   Services Showcase Section
======================================== */

.services-showcase-section {
    background: #000;
    padding: 0;
}

.services-showcase-image {
    width: 100%;
    overflow: hidden;
}

.services-showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-services-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #5B2A86;
    padding: 40px 0;
}

.about-services-slider-track {
    display: flex;
    gap: 70px;
    animation: slideAboutServices 30s linear infinite;
    padding: 0 20px;
}

.about-service-slide {
    flex-shrink: 0;
    background: transparent;
    padding: 0;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.about-service-slide:hover {
    color: var(--primary-color);
}

@keyframes slideAboutServices {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   About Section
======================================== */

.about-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.about-illustration {
    position: relative;
    padding: 40px;
}

.about-illustration img {
    width: 100%;
    max-width: 400px;
    animation: floatSlow 6s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-15px) translateX(10px);
    }
    50% {
        transform: translateY(-20px) translateX(0px);
    }
    75% {
        transform: translateY(-15px) translateX(-10px);
    }
}

.about-content {
    padding-left: 20px;
}

.about-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.about-badge-line {
    width: 100px;
    height: 2px;
    background: black;
    opacity: 0.3;
}

.about-badge {
    display: inline-block;
}

.about-badge span {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
    display: inline-block;
}

.about-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.btn-who-we-are {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
}

.btn-who-we-are:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.5);
    color: var(--white);
}

.btn-who-we-are i {
    font-size: 16px;
    transition: var(--transition);
    background: var(--white);
    color: var(--primary-color);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-who-we-are:hover i {
    transform: translateX(3px) rotate(-45deg);
}

/* ========================================
   Mission Section
======================================== */

.mission-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.mission-left-content {
    height: 100%;
}

.mission-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.mission-badge {
    display: inline-block;
}

.mission-badge span {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
    display: inline-block;
}

.mission-badge-line {
    width: 100px;
    height: 2px;
    background: var(--text-light);
    opacity: 0.3;
}

.mission-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 15px;
}

.mission-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.mission-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mission-cards-wrapper {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 0fr 1fr;
    gap: 15px;
}

.mission-cards-left {
    display: contents;
}

.vision-card {
    grid-column: 1;
    grid-row: 1;
}

.mission-card-single {
    grid-column: 1;
    grid-row: 2;
}

.values-card {
    grid-column: 2;
    grid-row: 1 / 3;
}

.mission-card {
    padding: 20px;
    border-radius: 15px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.mission-card-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: var(--transition);
}

.mission-card-icon i {
    font-size: 20px;
}

.vision-card {
    background: #f5f5f5;
}

.vision-card .mission-card-icon {
    color: var(--primary-color);
}

.mission-card-single {
    background: #f5f5f5;
}

.mission-card-single .mission-card-icon {
    color: var(--primary-color);
}

.values-card {
    background: linear-gradient(135deg, #6B2D8F, #8B3FA8);
    color: var(--white);
}

.values-card .mission-card-icon {
    color: var(--white);
}

.values-card h3,
.values-card p {
    color: var(--white);
}

.values-card p {
    font-size: 0.9rem;
}

.mission-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.mission-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.5;
}

.values-list {
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 10px;
    opacity: 0.9;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ========================================
   Partners Section
======================================== */

.partners-section {
    background: #321F50;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.partners-bg-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    height: auto;
    opacity: 0.4;
    z-index: 1;
    animation: floatLeftRight 8s ease-in-out infinite;
}

.partners-bg-left img {
    width: 100%;
    height: auto;
    display: block;
}

.partners-bg-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: auto;
    opacity: 0.4;
    z-index: 1;
    animation: floatRightLeft 7s ease-in-out infinite;
}

.partners-bg-right img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes floatLeftRight {
    0%, 100% {
        transform: translateY(-50%) translateX(0px);
    }
    25% {
        transform: translateY(-45%) translateX(15px);
    }
    50% {
        transform: translateY(-50%) translateX(20px);
    }
    75% {
        transform: translateY(-55%) translateX(15px);
    }
}

@keyframes floatRightLeft {
    0%, 100% {
        transform: translateY(-50%) translateX(0px);
    }
    25% {
        transform: translateY(-55%) translateX(-15px);
    }
    50% {
        transform: translateY(-50%) translateX(-20px);
    }
    75% {
        transform: translateY(-45%) translateX(-15px);
    }
}

.partners-section .container {
    position: relative;
    z-index: 2;
}

.partners-header {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partners-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.partners-badge {
    display: inline-block;
}

.partners-badge span {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
    display: inline-block;
}

.partners-badge-line {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.partners-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
}

.partners-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
}

.partner-card {
    background: #261443;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    min-height: 165px;
    width: 100%;
}

.partner-card:hover {
    background: #261443;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.partner-logo {
    max-width: 180px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.partner-card:hover .partner-logo {
    filter: brightness(0) invert(1);
    transform: scale(1.05);
}

/* ========================================
   Featured Projects Section
======================================== */

.featured-projects-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.portfolio-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.portfolio-badge {
    display: inline-block;
}

.portfolio-badge span {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
    display: inline-block;
}

.portfolio-badge-line {
    width: 100px;
    height: 2px;
    background: black;
    opacity: 0.3;
}

.featured-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.featured-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.project-card {
    position: relative;
    background: transparent;
    transition: var(--transition);
}

.project-link-wrapper {
    display: block;
    text-decoration: none;
    margin-bottom: 20px;
}

.project-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
}

.project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.project-link-wrapper:hover .project-image::after {
    opacity: 1;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-arrow-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 70px;
    height: 70px;
    background: #B8FF3C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.project-arrow-icon i {
    font-size: 24px;
    color: #000;
}

.project-link-wrapper:hover .project-arrow-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.project-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 15px 0;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-tag {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid lightgray;
    color: #666;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 400;
    transition: var(--transition);
}


.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.5);
    color: var(--white);
}

.btn-view-all i {
    font-size: 16px;
    transition: var(--transition);
    background: var(--white);
    color: var(--primary-color);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-view-all:hover i {
    transform: translateX(3px) rotate(-45deg);
}

/* ========================================
   Services Section
======================================== */

.services-section {
    background: #000000;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    bottom: 230px;
    left: 0;
    width: 300px;
    height: 300px;
    background: url('../img/service-bg.png') no-repeat center left;
    background-size: contain;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
    animation: floatUpDown 8s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(-30px) translateX(0px);
    }
    75% {
        transform: translateY(-20px) translateX(-10px);
    }
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.services-badge {
    display: inline-block;
}

.services-badge span {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
    display: inline-block;
}

.services-badge-line {
    width: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.services-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
}

.services-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin: 0;
}

.services-image {
    position: relative;
    padding: 0;
}

.services-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-item {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    transform: translateX(10px);
}

.service-item.active {
    transform: translateX(10px);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    transition: var(--transition);
}

.service-item.active .service-title {
    color: var(--primary-color);
}

.service-item:hover .service-title {
    color: var(--primary-color);
}

.service-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin: 0;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 18px 40px 18px 50px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
}

.btn-view-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.5);
    color: var(--white);
}

.btn-view-more i {
    font-size: 16px;
    transition: var(--transition);
    background: var(--white);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-view-more:hover i {
    transform: translateX(3px) rotate(-45deg);
}

/* ========================================
   Products Section
======================================== */

.products-section {
    background: #F9F9F9;
    position: relative;
    overflow: hidden;
}

.products-content {
    padding-right: 40px;
}

.products-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 25px;
}

.products-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

.btn-our-products {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 18px 40px 18px 50px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
}

.btn-our-products:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.5);
    color: var(--white);
}

.btn-our-products i {
    font-size: 16px;
    transition: var(--transition);
    background: var(--white);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-our-products:hover i {
    transform: translateX(3px) rotate(-45deg);
}

.trusted-section {
    margin-top: 60px;
}

.trusted-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #8B6BA8;
    margin-bottom: 25px;
}

.company-logos-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.company-logos-track {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: scroll-logos 25s linear infinite;
    width: fit-content;
}

.company-logos-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.company-logo-item {
    flex-shrink: 0;
    opacity: 0.7;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo-item:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.company-logo-item img {
    height: 70px;
    width: 100%;
    object-fit: contain;
    display: block;
}

.products-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.products-image-main {
    position: relative;
    width: 100%;
    max-width: 580px;
    z-index: 2;
    animation: floatSlow 6s ease-in-out infinite;
}

.products-image-main img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.products-image-overlay {
    position: absolute;
    bottom: -75px;
    right: -50px;
    width: 85%;
    max-width: 450px;
    z-index: 3;
    pointer-events: none;
    animation: floatReverse 7s ease-in-out infinite;
}

.products-image-overlay img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes floatReverse {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(15px) translateX(-10px);
    }
    50% {
        transform: translateY(20px) translateX(0px);
    }
    75% {
        transform: translateY(15px) translateX(10px);
    }
}

/* ========================================
   Digital Experience Section
======================================== */

.digital-experience-section {
    background: #0f172a;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.digital-experience-section .container {
    position: relative;
    z-index: 1;
}

.digital-content {
    padding-right: 40px;
}

.digital-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 30px;
}

.digital-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 40px;
}

.digital-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.digital-feature-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.digital-feature-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #f59e0b, #eab308);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    flex-shrink: 0;
}

.digital-feature-badge span {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

.digital-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.digital-orb {
    position: absolute;
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.digital-orb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.digital-image {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.digital-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* ========================================
   Partners Slider Section
======================================== */

.partners-slider-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.partners-slider-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.partners-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.partners-slider-wrapper::before,
.partners-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa, transparent);
}

.partners-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa, transparent);
}

.partners-slider-track {
    display: flex;
    gap: 80px;
    animation: slidePartners 40s linear infinite;
    width: max-content;
}

@keyframes slidePartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-slide {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: var(--transition);
}

.partner-slide:hover {
    opacity: 1;
    transform: scale(1.05);
}

.partner-slide img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partner-slide:hover img {
    filter: grayscale(0%);
}

/* ========================================
   Recent News Section
======================================== */

.recent-news-section {
    padding: 100px 0;
    background: var(--white);
}

.blogs-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.blogs-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
    flex-shrink: 0;
}

.blogs-badge-line {
    height: 2px;
    flex-grow: 1;
    background: black;
    max-width: 150px;
}

.recent-news-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.recent-news-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.blog-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--white);
    transition: var(--transition);
    height: 100%;
}

.blog-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.blog-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-image img {
    transform: scale(1.15);
}

.blog-content {
    padding: 25px 0 0 0;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
    transition: var(--transition);
    line-height: 1.4;
}

.blog-card:hover .blog-title {
    color: var(--primary-color);
}

.btn-view-more-blog {
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: 0 5px 25px rgba(233, 30, 99, 0.4);
}

.btn-view-more-blog i {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-view-more-blog:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(233, 30, 99, 0.5);
    color: var(--white);
}

.btn-view-more-blog:hover i {
    transform: translateX(3px);
}

/* ========================================
   CTA Section
======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

/* ========================================
   Buttons
======================================== */

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.5);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-light:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* ========================================
   Footer
======================================== */

.footer {
    background: #3d2463;
    color: var(--white);
}

.footer-main {
    padding: 50px 0 60px;
}

.footer-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.2;
}

.footer-address-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-address-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.footer-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-address-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.8;
    font-size: 1rem;
}

.footer-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.footer-social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.footer-contact-item a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid white;
    padding: 20px 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 5px 0;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-brand {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-brand:hover {
    color: var(--primary-dark);
}

/* ========================================
   Back to Top Button
======================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ========================================
   WhatsApp Float Buttons
======================================== */

.whatsapp-buttons-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
    color: var(--white);
}

.whatsapp-business {
    background: #128C7E;
    animation: whatsappBusinessPulse 2s infinite;
    position: relative;
}

.whatsapp-business::after {
    content: 'B';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
    background: #128C7E;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.whatsapp-business:hover {
    background: #0D6E63;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(18, 140, 126, 0.6);
    color: var(--white);
}

.whatsapp-business:hover::after {
    background: #0D6E63;
}

.whatsapp-regular {
    background: #25D366;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-regular:hover {
    background: #20BA5A;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: var(--white);
}

@keyframes whatsappBusinessPulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(18, 140, 126, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(18, 140, 126, 0.7);
    }
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ========================================
   Responsive Design
======================================== */

@media (max-width: 991px) {
    .navbar-menu-wrapper {
        display: none;
    }
    
    .navbar-logo {
        height: 60px;
    }
    
    .custom-toggler {
        margin-left: auto;
    }
    
    .sidebar-menu {
        width: 320px !important;
    }
    
    .sidebar-menu .offcanvas-header {
        padding: 20px;
    }
    
    .sidebar-menu .offcanvas-body {
        padding: 30px 20px;
    }
    
    .sidebar-logo-img {
        height: 50px;
    }
    
    .hero-slides-wrapper {
        min-height: 220px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-arrow-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
        margin-left: 15px;
    }
    
    .service-hero-subtitle {
        font-size: 1rem;
    }
    
    .service-hero-title {
        font-size: 3.5rem;
    }
    
    .service-hero-arrow-btn {
        width: 70px;
        height: 70px;
    }
    
    .service-hero-arrow-btn i {
        font-size: 1.3rem;
    }
    
    .about-hero-content {
        padding-bottom: 60px;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-hero-title {
        font-size: 3.5rem;
    }
    
    .about-hero-arrow-btn {
        width: 70px;
        height: 45px;
        border-radius: 22px;
        margin-left: 15px;
        padding-right: 6px;
    }
    
    .about-hero-arrow-btn::before {
        width: 32px;
        height: 32px;
        right: 6px;
    }
    
    .about-hero-arrow-btn i {
        font-size: 14px;
        width: 32px;
        height: 32px;
        right: 6px;
    }
    
    .services-overview-section {
        padding: 60px 0;
    }
    
    .services-overview-image {
        margin-top: 30px;
    }
    
    .services-overview-image img {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .services-overview-content {
        padding-left: 0;
        padding-top: 30px;
    }
    
    .services-overview-title {
        font-size: 2rem;
    }
    
    .services-overview-description {
        font-size: 0.9rem;
    }
    
    .services-list-item {
        margin-bottom: 12px;
        font-size: 0.9rem;
    }
    
    .service-intro-section {
        padding: 60px 0;
    }
    
    .service-intro-image {
        margin-top: 30px;
    }
    
    .service-intro-image img {
        max-width: 280px;
        margin: 0;
    }
    
    .service-intro-content {
        padding-left: 0;
        padding-top: 30px;
    }
    
    .service-intro-title {
        font-size: 2rem;
    }
    
    .service-intro-description {
        font-size: 0.9rem;
    }
    
    .service-intro-list-item {
        margin-bottom: 12px;
        font-size: 0.9rem;
    }
    
    .portfolio-grid-section {
        padding: 60px 0;
    }
    
    .portfolio-grid-item {
        margin-bottom: 35px;
    }
    
    .portfolio-grid-image {
        height: 300px;
    }
    
    .portfolio-grid-title {
        font-size: 1.2rem;
    }
    
    .web-design-back-section {
        padding: 30px 0 15px;
    }
    
    .web-design-grid-section {
        padding: 50px 0 60px;
    }
    
    .web-design-image {
        height: 300px;
    }
    
    .web-design-hover-title {
        font-size: 1.5rem;
    }
    
    .web-design-hover-description {
        font-size: 0.9rem;
    }
    
    .branding-back-section {
        padding: 30px 0 15px;
    }
    
    .branding-grid-section {
        padding: 50px 0 60px;
    }
    
    .branding-image {
        height: 300px;
    }
    
    .branding-hover-title {
        font-size: 1.5rem;
    }
    
    .mobapp-back-section {
        padding: 30px 0 15px;
    }
    
    .mobapp-grid-section {
        padding: 50px 0 60px;
    }
    
    .mobapp-image {
        height: 300px;
    }
    
    .mobapp-hover-title {
        font-size: 1.5rem;
    }
    
    .mobapp-hover-description {
        font-size: 0.9rem;
    }
    
    .other-designs-back-section {
        padding: 30px 0 15px;
    }
    
    .other-designs-grid-section {
        padding: 50px 0 60px;
    }
    
    .other-designs-image {
        height: 300px;
    }
    
    .other-designs-hover-title {
        font-size: 1.5rem;
    }
    
    .other-designs-hover-description {
        font-size: 0.9rem;
    }
    
    .blog-grid-section {
        padding: 60px 0;
    }
    
    .blog-card-image img {
        height: 250px;
    }
    
    .blog-card-title {
        font-size: 1.2rem;
    }
    
    .blog-details-section {
        padding: 50px 0 60px;
    }
    
    .blog-details-back-btn {
        font-size: 0.85rem;
        padding: 8px 20px;
    }
    
    .blog-details-featured-image {
        margin-bottom: 30px;
    }
    
    .blog-details-featured-image img {
        height: 350px;
    }
    
    .blog-details-intro {
        font-size: 0.95rem;
    }
    
    .blog-details-subtitle {
        font-size: 1.3rem;
    }
    
    .blog-details-step-title {
        font-size: 1.1rem;
    }
    
    .blog-details-step-text {
        font-size: 0.9rem;
    }
    
    .excellence-section {
        padding: 60px 0;
    }
    
    .excellence-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .excellence-description {
        text-align: center;
    }
    
    .excellence-features {
        padding: 18px;
    }
    
    .excellence-stats {
        gap: 35px;
        flex-wrap: wrap;
        padding-top: 25px;
    }
    
    .excellence-stat-item {
        flex: 0 1 calc(50% - 35px);
        padding-left: 25px;
    }
    
    .excellence-stat-item:first-child,
    .excellence-stat-item:nth-child(3) {
        padding-left: 0;
    }
    
    .excellence-stat-item:nth-child(3)::before {
        display: none;
    }
    
    .excellence-stat-number {
        font-size: 2.2rem;
    }
    
    .excellence-stat-label {
        font-size: 0.85rem;
    }
    
    .excellence-image-right {
        min-height: 300px;
    }
    
    .about-services-slider-wrapper {
        padding: 35px 0;
    }
    
    .about-service-slide {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mission-title {
        font-size: 1.9rem;
    }
    
    .mission-left-content {
        margin-bottom: 25px;
    }
    
    .mission-image {
        margin-bottom: 25px;
        height: auto;
    }
    
    .mission-section {
        padding: 50px 0;
    }
    
    .partners-bg-left,
    .partners-bg-right {
        opacity: 0.2;
    }
    
    .partners-title {
        font-size: 2rem;
    }
    
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-header {
        margin-bottom: 40px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-title {
        font-size: 2rem;
    }
    
    .portfolio-badge-wrapper {
        margin-bottom: 30px;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-image {
        margin-bottom: 40px;
    }
    
    .service-item {
        padding: 25px 0;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .products-main-title {
        font-size: 2.2rem;
    }
    
    .products-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .company-logos-track {
        gap: 30px;
    }
    
    .company-logo-item img {
        height: 35px;
    }
}

@media (max-width: 767px) {
    .hero-slides-wrapper {
        min-height: 280px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-arrow-btn {
        display: block;
        margin-left: 0;
        margin-top: 30px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .navbar-logo {
        height: 50px;
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .sidebar-menu {
        width: 280px !important;
    }
    
    .sidebar-section {
        margin-bottom: 30px;
    }
    
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        margin-top: 15px;
        padding: 0 15px;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
    
    .about-main-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 25px;
    }
    
    .stat-item {
        min-width: 100%;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .mission-title {
        font-size: 2rem;
    }
    
    .mission-image {
        margin-bottom: 25px;
        height: auto;
    }
    
    .mission-cards-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }
    
    .vision-card,
    .mission-card-single,
    .values-card {
        grid-column: 1;
        grid-row: auto;
    }
    
    .mission-card {
        padding: 25px;
    }
    
    .mission-left-content {
        margin-bottom: 25px;
    }
    
    .mission-section {
        padding: 40px 0;
    }
    
    .partners-bg-left {
        width: 150px;
    }
    
    .partners-bg-right {
        width: 200px;
    }
    
    .partner-card {
        padding: 40px 30px;
    }
    
    .services-section::before {
        display: none;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .partners-header {
        margin-bottom: 30px;
    }
    
    .featured-title {
        font-size: 1.8rem;
    }
    
    .project-image {
        height: 220px;
    }
    
    .services-title {
        font-size: 1.8rem;
    }
    
    .service-item {
        padding: 20px 0;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .services-image {
        margin-bottom: 30px;
    }
    
    .products-main-title {
        font-size: 2rem;
    }
    
    .products-description {
        font-size: 1rem;
    }
    
    .products-image-wrapper {
        padding: 20px;
    }
    
    .products-image-main {
        max-width: 400px;
    }
    
    .products-image-overlay {
        max-width: 350px;
        bottom: -15px;
        right: -15px;
    }
    
    .digital-experience-section {
        padding: 60px 0;
    }
    
    .digital-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .digital-main-title {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }
    
    .digital-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .digital-features {
        gap: 12px;
        justify-content: center;
    }
    
    .digital-feature-badge {
        padding: 14px 24px;
    }
    
    .feature-icon {
        width: 22px;
        height: 22px;
    }
    
    .digital-feature-badge span {
        font-size: 0.95rem;
    }
    
    .digital-orb {
        width: 200px;
        height: 200px;
        top: -40px;
        left: -40px;
    }
    
    .partners-slider-section {
        padding: 60px 0;
    }
    
    .partners-slider-title {
        font-size: 1.3rem;
    }
    
    .partners-slider-track {
        gap: 60px;
    }
    
    .partner-slide img {
        height: 40px;
        max-width: 140px;
    }
    
    .recent-news-section {
        padding: 60px 0;
    }
    
    .recent-news-title {
        font-size: 2rem;
    }
    
    .recent-news-description {
        font-size: 1rem;
    }
    
    .blog-image {
        height: 320px;
    }
    
    .blog-title {
        font-size: 1.3rem;
    }
    
    .btn-view-more-blog {
        padding: 14px 40px;
        font-size: 0.95rem;
    }
    
    .btn-view-more-blog i {
        width: 36px;
        height: 36px;
    }
    
    .footer-main {
        padding: 60px 0 40px;
    }
    
    .footer-heading {
        font-size: 2rem;
    }
    
    .footer-address-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-hero-content {
        padding-bottom: 50px;
    }
    
    .about-hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-arrow-btn {
        width: 60px;
        height: 40px;
        border-radius: 20px;
        margin-left: 10px;
        padding-right: 6px;
    }
    
    .about-hero-arrow-btn::before {
        width: 28px;
        height: 28px;
        right: 6px;
    }
    
    .about-hero-arrow-btn i {
        font-size: 12px;
    }
    
    .service-hero-content {
        max-width: 100%;
    }
    
    .service-hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .service-hero-title-wrapper {
        gap: 15px;
    }
    
    .service-hero-title {
        font-size: 2.5rem;
    }
    
    .service-hero-arrow-btn {
        width: 60px;
        height: 60px;
    }
    
    .service-hero-arrow-btn i {
        font-size: 1.1rem;
    }
    
    .services-overview-section {
        padding: 40px 0;
    }
    
    .services-overview-image {
        margin-top: 25px;
    }
    
    .services-overview-image img {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .services-badge-wrapper {
        margin-bottom: 0;
    }
    
    .services-badge {
        font-size: 0.85rem;
        padding: 6px 20px;
    }
    
    .services-badge-line {
        display: none;
    }
    
    .services-overview-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .services-overview-description {
        font-size: 0.85rem;
        margin-bottom: 25px;
    }
    
    .services-list-item {
        margin-bottom: 10px;
        font-size: 0.85rem;
    }
    
    .service-intro-section {
        padding: 40px 0;
    }
    
    .service-intro-image {
        margin-top: 25px;
    }
    
    .service-intro-image img {
        max-width: 220px;
        margin: 0;
    }
    
    .service-intro-badge-wrapper {
        margin-bottom: 0;
    }
    
    .service-intro-badge {
        font-size: 0.85rem;
        padding: 6px 20px;
    }
    
    .service-intro-badge-line {
        display: none;
    }
    
    .service-intro-content {
        padding-left: 0;
        padding-top: 30px;
    }
    
    .service-intro-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .service-intro-description {
        font-size: 0.85rem;
        margin-bottom: 25px;
    }
    
    .service-intro-list-item {
        margin-bottom: 10px;
        font-size: 0.85rem;
    }
    
    .portfolio-grid-section {
        padding: 40px 0;
    }
    
    .portfolio-grid-item {
        margin-bottom: 30px;
    }
    
    .portfolio-grid-image {
        height: 250px;
        border-radius: 10px;
        margin-bottom: 15px;
    }
    
    .portfolio-grid-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .web-design-back-section {
        padding: 25px 0 10px;
    }
    
    .web-design-back-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .web-design-grid-section {
        padding: 40px 0 50px;
    }
    
    .web-design-item {
        margin-bottom: 30px;
    }
    
    .web-design-image {
        height: 250px;
        border-radius: 10px;
    }
    
    .web-design-hover-overlay {
        padding: 20px;
        bottom: 30px;
        border-radius: 10px;
    }
    
    .web-design-hover-title {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }
    
    .web-design-hover-subtitle {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .web-design-hover-description {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .web-design-visit-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .branding-back-section {
        padding: 25px 0 10px;
    }
    
    .branding-back-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .branding-grid-section {
        padding: 40px 0 50px;
    }
    
    .branding-item {
        margin-bottom: 30px;
    }
    
    .branding-image {
        height: 250px;
        border-radius: 10px;
    }
    
    .branding-hover-overlay {
        padding: 20px;
        bottom: 30px;
        border-radius: 10px;
    }
    
    .branding-hover-title {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }
    
    .mobapp-back-section {
        padding: 25px 0 10px;
    }
    
    .mobapp-back-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .mobapp-grid-section {
        padding: 40px 0 50px;
    }
    
    .mobapp-item {
        margin-bottom: 30px;
    }
    
    .mobapp-image {
        height: 250px;
        border-radius: 10px;
    }
    
    .mobapp-hover-overlay {
        padding: 20px;
        bottom: 30px;
        border-radius: 10px;
    }
    
    .mobapp-hover-title {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }
    
    .mobapp-hover-subtitle {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .mobapp-hover-description {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .mobapp-visit-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .other-designs-back-section {
        padding: 25px 0 10px;
    }
    
    .other-designs-back-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .other-designs-grid-section {
        padding: 40px 0 50px;
    }
    
    .other-designs-item {
        margin-bottom: 30px;
    }
    
    .other-designs-image {
        height: 250px;
        border-radius: 10px;
    }
    
    .other-designs-hover-overlay {
        padding: 20px;
        bottom: 30px;
        border-radius: 10px;
    }
    
    .other-designs-hover-title {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }
    
    .other-designs-hover-subtitle {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .other-designs-hover-description {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .other-designs-visit-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .blog-grid-section {
        padding: 40px 0;
    }
    
    .blog-card-image img {
        height: 220px;
    }
    
    .blog-card-content {
        padding: 20px 0 0;
    }
    
    .blog-card-date {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .blog-card-title {
        font-size: 1.1rem;
    }
    
    .blog-details-section {
        padding: 40px 0 50px;
    }
    
    .blog-details-back-btn {
        font-size: 0.8rem;
        padding: 8px 18px;
        margin-bottom: 25px;
    }
    
    .blog-details-featured-image {
        border-radius: 15px;
        margin-bottom: 25px;
    }
    
    .blog-details-featured-image img {
        height: 280px;
    }
    
    .blog-details-intro {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .blog-details-subtitle {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    
    .blog-details-step {
        margin-bottom: 25px;
    }
    
    .blog-details-step-title {
        font-size: 1rem;
    }
    
    .blog-details-step-subtitle {
        font-size: 1rem;
    }
    
    .blog-details-step-text {
        font-size: 0.85rem;
    }
    
    .excellence-section {
        padding: 40px 0;
    }
    
    .excellence-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .excellence-description {
        font-size: 0.95rem;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .excellence-features {
        margin-bottom: 35px;
        padding: 15px;
    }
    
    .excellence-feature-item {
        justify-content: flex-start;
    }
    
    .excellence-stats {
        gap: 20px;
        flex-wrap: wrap;
        padding-top: 20px;
    }
    
    .excellence-stat-item {
        text-align: center;
        flex: 0 1 calc(50% - 20px);
        padding-left: 20px;
    }
    
    .excellence-stat-item:first-child,
    .excellence-stat-item:nth-child(3) {
        padding-left: 0;
    }
    
    .excellence-stat-item:nth-child(3)::before {
        display: none;
    }
    
    .excellence-stat-number {
        font-size: 1.8rem;
    }
    
    .excellence-stat-label {
        font-size: 0.8rem;
    }
    
    .excellence-image-right {
        min-height: 250px;
    }
    
    .about-services-slider-wrapper {
        padding: 30px 0;
    }
    
    .about-service-slide {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .mission-title {
        font-size: 1.6rem;
    }
    
    .mission-badge-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .mission-badge-line {
        width: 60px;
    }
    
    .mission-section {
        padding: 40px 0;
    }
    
    .partners-title {
        font-size: 1.8rem;
    }
    
    .partners-description {
        font-size: 1rem;
    }
    
    .partners-badge-wrapper {
        gap: 15px;
    }
    
    .partners-badge-line {
        width: 80px;
    }
    
    .partners-section {
        padding: 50px 0;
    }
    
    .partners-title {
        font-size: 1.6rem;
    }
    
    .partner-card {
        padding: 30px 20px;
    }
    
    .featured-title {
        font-size: 1.6rem;
    }
    
    .portfolio-badge-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .portfolio-badge-line {
        width: 60px;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-title {
        font-size: 1.3rem;
    }
    
    .services-title {
        font-size: 1.6rem;
    }
    
    .services-badge-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .services-badge-line {
        width: 60px;
    }
    
    .service-item {
        padding: 20px 0;
    }
    
    .service-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .services-image {
        margin-bottom: 30px;
    }
    
    .services-image img {
        border-radius: 15px;
    }
    
    .products-main-title {
        font-size: 1.75rem;
    }
    
    .products-description {
        font-size: 0.95rem;
    }
    
    .trusted-section {
        margin-top: 40px;
    }
    
    .trusted-text {
        font-size: 0.75rem;
    }
    
    .company-logos-track {
        gap: 25px;
    }
    
    .company-logo-item img {
        height: 30px;
    }
    
    .products-image-wrapper {
        padding: 10px;
    }
    
    .products-image-main {
        max-width: 320px;
    }
    
    .products-image-overlay {
        max-width: 280px;
        bottom: -10px;
        right: -10px;
    }
    
    .digital-experience-section {
        padding: 40px 0;
    }
    
    .digital-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .digital-main-title {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }
    
    .digital-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .digital-features {
        gap: 10px;
        margin-top: 25px;
        justify-content: center;
    }
    
    .digital-feature-badge {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .feature-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    .digital-feature-badge span {
        font-size: 0.85rem;
    }
    
    .digital-image-wrapper {
        margin-top: 30px;
    }
    
    .digital-orb {
        width: 150px;
        height: 150px;
        top: -30px;
        left: -30px;
    }
    
    .digital-image {
        border-radius: 15px;
    }
    
    .partners-slider-section {
        padding: 40px 0;
    }
    
    .partners-slider-title {
        font-size: 1.1rem;
    }
    
    .partners-slider-track {
        gap: 40px;
        animation: slidePartners 30s linear infinite;
    }
    
    .partner-slide img {
        height: 35px;
        max-width: 120px;
    }
    
    .partners-slider-wrapper::before,
    .partners-slider-wrapper::after {
        width: 50px;
    }
    
    .recent-news-section {
        padding: 40px 0;
    }
    
    .blogs-badge-wrapper {
        margin-bottom: 20px;
        justify-content: center;
    }
    
    .blogs-badge {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
    
    .blogs-badge-line {
        display: none;
    }
    
    .recent-news-title {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .recent-news-description {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .blog-image {
        height: 280px;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
    
    .btn-view-more-blog {
        padding: 12px 35px;
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .btn-view-more-blog i {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-heading {
        font-size: 1.75rem;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-address-block {
        gap: 25px;
    }
    
    .footer-address-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .footer-address-text p {
        font-size: 0.9rem;
    }
    
    .footer-title {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        margin-bottom: 12px;
    }
    
    .footer-social-links {
        justify-content: center;
    }
    
    .footer-social-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-contact-info {
        align-items: center;
    }
    
    .footer-contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
}

/* ========================================
   Contact Page Styles
======================================== */

.contact-main-section {
    background: #ffffff;
}

.contact-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-badge {
    background: #E91E63;
    color: #ffffff;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
}

.contact-badge-line {
    width: 120px;
    height: 2px;
    background: black;
}

.contact-intro-text {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 450px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-detail-icon {
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 60px;
    height: 60px;
}

.contact-detail-content {
    flex: 1;
}

.contact-detail-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-detail-link {
    font-size: 1rem;
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-link:hover {
    color: #E91E63;
}

.contact-detail-meta {
    font-size: 0.95rem;
    color: #666666;
}

/* Contact Form Box */
.contact-form-box {
    background: #ffffff;
    padding: 0;
}

.contact-form-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
}

.form-label-modern {
    font-size: 1rem;
    color: #666666;
    /* margin-bottom: 12px; */
    font-weight: 400;
}

.form-input-modern {
    width: 100%;
    padding: 5px 0;
    font-size: 1rem;
    color: #1a1a1a;
    background: transparent;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-input-modern:focus {
    border-bottom-color: #E91E63;
}

.form-textarea-modern {
    resize: vertical;
    /* min-height: 120px; */
}

.btn-submit-modern {
    background: linear-gradient(135deg, #E91E63 0%, #D81B60 100%);
    color: #ffffff;
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    margin-top: 20px;
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.btn-arrow-circle {
    width: 35px;
    height: 35px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-arrow-circle i {
    color: #E91E63;
    font-size: 0.9rem;
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* Responsive Styles for Contact Page */
@media (max-width: 991px) {
    .contact-badge-wrapper {
        margin-bottom: 25px;
    }
    
    .contact-badge {
        padding: 10px 30px;
        font-size: 0.95rem;
    }
    
    .contact-badge-line {
        width: 80px;
    }
    
    .contact-intro-text {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .contact-details-list {
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .contact-form-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .btn-submit-modern {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .contact-badge-wrapper {
        margin-bottom: 20px;
    }
    
    .contact-badge {
        padding: 8px 25px;
        font-size: 0.9rem;
    }
    
    .contact-badge-line {
        width: 60px;
    }
    
    .contact-intro-text {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .contact-details-list {
        gap: 25px;
    }
    
    .contact-detail-item {
        gap: 15px;
    }
    
    .contact-detail-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .contact-detail-title {
        font-size: 1.1rem;
    }
    
    .contact-detail-link {
        font-size: 0.95rem;
    }
    
    .contact-form-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .modern-contact-form {
        gap: 25px;
    }
    
    .form-label-modern {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .form-input-modern {
        padding: 15px 0;
        font-size: 0.95rem;
    }
    
    .btn-submit-modern {
        padding: 18px 40px;
        font-size: 1rem;
    }
    
    .btn-arrow-circle {
        width: 30px;
        height: 30px;
    }
    
    .btn-arrow-circle i {
        font-size: 0.8rem;
    }
    
    .map-wrapper iframe {
        height: 350px;
    }
}

/* ========================================
   Services Page - Overview Section
======================================== */

.srv-overview-section {
    background: #f8f9fa;
}

.srv-left-content {
    display: flex;
    flex-direction: column;
    margin-left: -60px;
}

.srv-tag-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
    margin-left: 60px;
}

.srv-tag {
    background: #E91E63;
    color: #ffffff;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
}

.srv-tag-divider {
    width: 140px;
    height: 2px;
    background: #1a1a1a;
}

.srv-visual-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
}

.srv-shape-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.08));
    opacity: 0.3;
    animation: floatSlow 6s ease-in-out infinite;
}

.srv-content-area {
    padding-left: 20px;
}

.srv-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.srv-intro-text {
    font-size: 1.05rem;
    color: #999999;
    line-height: 1.8;
    margin-bottom: 40px;
}

.srv-features-grid {
    margin-top: 30px;
}

.srv-features-column {
    list-style: none;
    padding: 0;
    margin: 0;
}

.srv-feature-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.srv-feature-row:hover {
    background: rgba(123, 104, 238, 0.1);
    transform: translateX(5px);
}

.srv-feature-row.active {
    background: rgba(123, 104, 238, 0.2);
}

.srv-feature-row.active .srv-dot {
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(233, 30, 99, 0.6);
}

.srv-feature-row.active .srv-feature-label {
    color: var(--primary-color);
    font-weight: 600;
}

.srv-dot {
    width: 8px;
    height: 8px;
    background: #7B68EE;
    transition: all 0.3s ease;
    border-radius: 50%;
    flex-shrink: 0;
}

.srv-feature-label {
    font-size: 1.05rem;
    color: #333333;
    font-weight: 400;
    transition: all 0.3s ease;
}

/* Responsive Styles for Services Overview Section */
@media (max-width: 991px) {
    .srv-left-content {
        align-items: center;
    }
    
    .srv-tag-wrapper {
        justify-content: center;
        margin-bottom: 50px;
    }
    
    .srv-tag {
        padding: 10px 30px;
        font-size: 0.95rem;
    }
    
    .srv-tag-divider {
        width: 100px;
    }
    
    .srv-visual-wrapper {
        justify-content: center;
    }
    
    .srv-shape-img {
        max-width: 300px;
    }
    
    .srv-content-area {
        padding-left: 0;
    }
    
    .srv-heading {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .srv-intro-text {
        font-size: 1rem;
        text-align: center;
    }
    
    .srv-features-grid {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .srv-tag-wrapper {
        margin-bottom: 40px;
    }
    
    .srv-tag {
        padding: 8px 25px;
        font-size: 0.9rem;
    }
    
    .srv-tag-divider {
        width: 70px;
    }
    
    .srv-shape-img {
        max-width: 250px;
    }
    
    .srv-heading {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .srv-intro-text {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .srv-features-grid .col-md-6 {
        margin-bottom: 20px;
    }
    
    .srv-features-grid .col-md-6:last-child {
        margin-bottom: 0;
    }
    
    .srv-feature-row {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .srv-dot {
        width: 7px;
        height: 7px;
    }
    
    .srv-feature-label {
        font-size: 1rem;
    }
}

/* ========================================
   Services Page - Service Modal
======================================== */

.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    pointer-events: none;
}

.service-modal.active .modal-overlay {
    pointer-events: all;
}

.service-modal .modal-content {
    position: relative;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(102, 126, 234, 0.5);
    border-radius: 30px;
    padding: 50px;
    overflow-y: auto;
    transform: scale(0.8);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-modal.active .modal-content {
    transform: scale(1);
}

.service-modal .modal-content::-webkit-scrollbar {
    width: 8px;
}

.service-modal .modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.service-modal .modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.3rem;
}

.close-btn:hover {
    background: #ff4757;
    border-color: #ff4757;
    color: #ffffff;
    transform: rotate(90deg);
}

.modal-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.5);
    color: #ffffff;
}

.modal-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.modal-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.modal-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.modal-feature {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.modal-feature:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.6);
    transform: translateX(5px);
}

.modal-feature i {
    color: #667eea;
    font-size: 1.3rem;
}

.modal-feature span {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.modal-cta {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
}

.modal-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    color: white;
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .service-modal .modal-content {
        padding: 40px 30px;
        width: 95%;
    }

    .modal-title {
        font-size: 2rem;
    }

    .modal-description {
        font-size: 1rem;
    }

    .modal-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-modal .modal-content {
        padding: 35px 25px;
    }

    .modal-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .modal-title {
        font-size: 1.8rem;
    }
}

/* ========================================
   Services Page - Work Process Section
======================================== */

.srv-work-process-section {
    background: #000000;
    position: relative;
    overflow: hidden;
}

.srv-process-bg-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    z-index: 1;
    pointer-events: none;
}

.srv-process-bg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.3;
}

.srv-work-process-section .container {
    position: relative;
    z-index: 2;
}

.srv-process-header {
    text-align: center;
    margin-bottom: 80px;
}

.srv-process-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.srv-process-workflow {
    width: 100%;
}

.srv-process-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.srv-process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    min-height: 400px;
    justify-content: center;
}

.srv-process-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.srv-process-circle-dotted {
    position: relative;
}

/* Outer white dots */
.srv-process-circle-dotted::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    margin-top: -100px;
    margin-left: -100px;
    border-radius: 50%;
    background-image:
        radial-gradient(circle, #ffffff 5px, transparent 5px),
        radial-gradient(circle, #ffffff 5px, transparent 5px),
        radial-gradient(circle, #ffffff 5px, transparent 5px),
        radial-gradient(circle, #ffffff 5px, transparent 5px),
        radial-gradient(circle, #ffffff 5px, transparent 5px),
        radial-gradient(circle, #ffffff 5px, transparent 5px),
        radial-gradient(circle, #ffffff 5px, transparent 5px),
        radial-gradient(circle, #ffffff 5px, transparent 5px),
        radial-gradient(circle, #ffffff 5px, transparent 5px),
        radial-gradient(circle, #ffffff 5px, transparent 5px),
        radial-gradient(circle, #ffffff 5px, transparent 5px),
        radial-gradient(circle, #ffffff 5px, transparent 5px);
    background-position:
        50% 0%,
        75% 6.7%,
        93.3% 25%,
        100% 50%,
        93.3% 75%,
        75% 93.3%,
        50% 100%,
        25% 93.3%,
        6.7% 75%,
        0% 50%,
        6.7% 25%,
        25% 6.7%;
    background-repeat: no-repeat;
    animation: rotateDots 20s linear infinite;
    z-index: -1;
}

/* Inner pink dots */
.srv-process-circle-dotted::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 170px;
    height: 170px;
    margin-top: -85px;
    margin-left: -85px;
    border-radius: 50%;
    background-image:
        radial-gradient(circle, #E91E63 6px, transparent 6px),
        radial-gradient(circle, #E91E63 6px, transparent 6px),
        radial-gradient(circle, #E91E63 6px, transparent 6px),
        radial-gradient(circle, #E91E63 6px, transparent 6px),
        radial-gradient(circle, #E91E63 6px, transparent 6px),
        radial-gradient(circle, #E91E63 6px, transparent 6px),
        radial-gradient(circle, #E91E63 6px, transparent 6px),
        radial-gradient(circle, #E91E63 6px, transparent 6px),
        radial-gradient(circle, #E91E63 6px, transparent 6px),
        radial-gradient(circle, #E91E63 6px, transparent 6px),
        radial-gradient(circle, #E91E63 6px, transparent 6px),
        radial-gradient(circle, #E91E63 6px, transparent 6px),
        radial-gradient(circle, #E91E63 6px, transparent 6px),
        radial-gradient(circle, #E91E63 6px, transparent 6px),
        radial-gradient(circle, #E91E63 6px, transparent 6px),
        radial-gradient(circle, #E91E63 6px, transparent 6px),
        radial-gradient(circle, #E91E63 6px, transparent 6px),
        radial-gradient(circle, #E91E63 6px, transparent 6px),
        radial-gradient(circle, #E91E63 6px, transparent 6px),
        radial-gradient(circle, #E91E63 6px, transparent 6px);
    background-position:
        50% 0%,
        60% 2%,
        70% 6%,
        79% 12%,
        87% 20%,
        93% 30%,
        97% 40%,
        99% 50%,
        97% 60%,
        93% 70%,
        87% 80%,
        79% 88%,
        70% 94%,
        60% 98%,
        50% 100%,
        40% 98%,
        30% 94%,
        21% 88%,
        13% 80%,
        7% 70%;
    background-repeat: no-repeat;
    animation: rotateDots 20s linear infinite;
    z-index: -1;
}

@keyframes rotateDots {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.srv-process-circle-dotted .srv-process-icon,
.srv-process-circle-dotted .srv-process-label {
    position: relative;
    z-index: 3;
}

.srv-process-circle-plain {
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.1);
}

.srv-process-icon {
    font-size: 2rem;
    color: #E91E63;
}

.srv-process-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.2;
}

.srv-process-text-box {
    text-align: center;
    max-width: 180px;
    margin-bottom: 20px;
}

.srv-process-text-box-top {
    order: 1;
    margin-bottom: 20px;
    margin-top: 0;
}

.srv-process-text-box-bottom {
    order: 3;
    margin-top: 20px;
    margin-bottom: 0;
}

.srv-process-circle {
    order: 2;
}

.srv-process-text-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.srv-process-text-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #E91E63;
}

.srv-process-text-desc {
    font-size: 0.75rem;
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Styles for Work Process Section */
@media (max-width: 1400px) {
    .srv-process-row {
        gap: 15px;
    }
    
    .srv-process-circle {
        width: 120px;
        height: 120px;
    }
    
    .srv-process-icon {
        font-size: 1.8rem;
    }
    
    .srv-process-label {
        font-size: 0.65rem;
    }
    
    .srv-process-text-box {
        max-width: 150px;
    }
    
    .srv-process-text-title {
        font-size: 0.8rem;
    }
    
    .srv-process-text-desc {
        font-size: 0.7rem;
    }
}

@media (max-width: 991px) {
    .srv-process-title {
        font-size: 2.5rem;
    }
    
    .srv-process-row {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
    }
    
    .srv-process-item {
        min-height: 300px;
        flex: 0 0 calc(33.333% - 30px);
    }
    
    .srv-process-circle {
        width: 120px;
        height: 120px;
    }
    
    .srv-process-icon {
        font-size: 1.8rem;
    }
    
    .srv-process-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 767px) {
    .srv-process-header {
        margin-bottom: 60px;
    }
    
    .srv-process-title {
        font-size: 2rem;
    }
    
    .srv-process-bg-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .srv-process-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .srv-process-item {
        flex: 1;
        width: 100%;
        min-height: auto;
    }
    
    .srv-process-circle {
        width: 140px;
        height: 140px;
    }
    
    .srv-process-text-box {
        max-width: 250px;
    }
    
    .srv-process-text-title {
        font-size: 0.9rem;
    }
    
    .srv-process-text-desc {
        font-size: 0.8rem;
    }
}

/* ========== DNA HELIX WORK PROCESS ========== */
.dna-helix-section {
    background: #000000;
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.dna-title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 80px;
}

.dna-title-bg-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: auto;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
    animation: floatMove 6s ease-in-out infinite;
}

@keyframes floatMove {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(-45%, -55%) rotate(5deg) scale(1.05);
    }
    50% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1.1);
    }
    75% {
        transform: translate(-55%, -45%) rotate(-5deg) scale(1.05);
    }
}

.dna-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(233, 30, 99, 0.5);
    position: relative;
    z-index: 1;
}

.dna-section-subtitle {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 60px;
}

.dna-container {
    position: relative;
    width: 800px;
    height: 800px;
    margin: 0 auto;
}

/* Rotating Rings */
.dna-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.ring-outer {
    width: 650px;
    height: 650px;
    border: 3px solid transparent;
    border-top: 3px solid #E91E63;
    border-right: 3px solid #E91E63;
    animation: rotateRing 8s linear infinite;
}

.ring-inner {
    width: 450px;
    height: 450px;
    border: 2px solid transparent;
    border-bottom: 2px solid #9C27B0;
    border-left: 2px solid #9C27B0;
    animation: rotateRing 6s linear infinite reverse;
}

@keyframes rotateRing {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Energy Particles */
.energy-particle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #E91E63;
    border-radius: 50%;
    box-shadow: 0 0 20px #E91E63;
    animation: particleOrbit 4s linear infinite;
    animation-delay: var(--delay);
}

@keyframes particleOrbit {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(325px) rotate(0deg);
        opacity: 1;
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) rotate(180deg) translateX(225px) rotate(-180deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(325px) rotate(-360deg);
        opacity: 1;
    }
}

/* Steps Orbit Container */
.steps-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    animation: stepsRotate 40s linear infinite;
}

@keyframes stepsRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Steps */
.dna-step {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    margin-left: -70px;
    margin-top: -70px;
    transform: rotate(var(--angle)) translate(325px) rotate(calc(-1 * var(--angle)));
    animation: fadeInBounce 0.8s ease-out forwards, counterRotate 40s linear infinite;
    animation-delay: var(--delay), var(--delay);
    opacity: 0;
    cursor: pointer;
}

@keyframes counterRotate {
    from { transform: rotate(var(--angle)) translate(325px) rotate(calc(-1 * var(--angle) + 0deg)); }
    to { transform: rotate(var(--angle)) translate(325px) rotate(calc(-1 * var(--angle) - 360deg)); }
}

@keyframes fadeInBounce {
    0% {
        opacity: 0;
        transform: rotate(var(--angle)) translate(50px) rotate(calc(-1 * var(--angle))) scale(0);
    }
    60% {
        transform: rotate(var(--angle)) translate(335px) rotate(calc(-1 * var(--angle))) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: rotate(var(--angle)) translate(325px) rotate(calc(-1 * var(--angle))) scale(1);
    }
}

.dna-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.15), rgba(156, 39, 176, 0.15));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(233, 30, 99, 0.6);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.dna-circle:hover {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.4), rgba(156, 39, 176, 0.4));
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(233, 30, 99, 0.8);
    border-color: #E91E63;
}

.step-num {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
}

.dna-circle i {
    font-size: 2.2rem;
    color: #E91E63;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.dna-circle:hover i {
    transform: scale(1.2) rotate(15deg);
}

.dna-circle h4 {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 600;
}

/* Center Display */
.center-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(156, 39, 176, 0.1));
    backdrop-filter: blur(15px);
    border: 3px solid rgba(233, 30, 99, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
}

.center-display.active {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.25), rgba(156, 39, 176, 0.25));
    border-color: rgba(233, 30, 99, 0.6);
    box-shadow: 0 0 50px rgba(233, 30, 99, 0.5);
}

.center-content {
    text-align: center;
    padding: 40px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.center-content.fade-out {
    opacity: 0;
}

.center-icon {
    font-size: 4rem;
    color: #E91E63;
    margin-bottom: 20px;
    display: block;
    animation: iconFloat 2s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.center-title {
    font-size: 2rem;
    font-weight: 700;
    color: #E91E63;
    margin-bottom: 15px;
}

.center-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Active state for clicked step */
.dna-step.active .dna-circle {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.6), rgba(156, 39, 176, 0.6));
    border-color: #E91E63;
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(233, 30, 99, 0.8);
}

.step-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid #E91E63;
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    100% {
        width: 150%;
        height: 150%;
        opacity: 0;
    }
}

/* DNA Helix Responsive */
@media (max-width: 991px) {
    .dna-title-bg-img {
        width: 250px;
    }
    
    .dna-section-title {
        font-size: 2.2rem;
    }
    
    .dna-container {
        width: 650px;
        height: 650px;
    }
    
    .ring-outer {
        width: 550px;
        height: 550px;
    }
    
    .ring-inner {
        width: 370px;
        height: 370px;
    }
    
    .dna-step {
        width: 120px;
        height: 120px;
        margin-left: -60px;
        margin-top: -60px;
        transform: rotate(var(--angle)) translate(275px) rotate(calc(-1 * var(--angle)));
    }
    
    .center-display {
        width: 280px;
        height: 280px;
    }
    
    .center-content {
        padding: 30px;
    }
    
    .center-icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .center-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .center-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .dna-title-bg-img {
        width: 180px;
    }
    
    .dna-section-title {
        font-size: 1.8rem;
    }
    
    .dna-container {
        width: 450px;
        height: 450px;
    }
    
    .ring-outer {
        width: 380px;
        height: 380px;
    }
    
    .ring-inner {
        width: 260px;
        height: 260px;
    }
    
    .dna-step {
        width: 90px;
        height: 90px;
        margin-left: -45px;
        margin-top: -45px;
        transform: rotate(var(--angle)) translate(190px) rotate(calc(-1 * var(--angle)));
    }
    
    .center-display {
        width: 200px;
        height: 200px;
    }
    
    .center-content {
        padding: 20px;
    }
    
    .center-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .center-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .center-description {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

/* ========================================
   Scroll Reveal Animations
   ======================================== */

/* Base scroll-reveal classes - initially hidden */
.scroll-reveal,
.scroll-reveal-left,
.scroll-reveal-right,
.scroll-reveal-scale {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fade in from bottom */
.scroll-reveal {
    transform: translateY(30px);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Slide in from left */
.scroll-reveal-left {
    transform: translateX(-50px);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Slide in from right */
.scroll-reveal-right {
    transform: translateX(50px);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Scale in */
.scroll-reveal-scale {
    transform: scale(0.9);
}

.scroll-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Ensure footer is always visible with animations */
.footer .scroll-reveal,
.footer .scroll-reveal-left,
.footer .scroll-reveal-right {
    opacity: 1 !important;
    animation: none;
    transform: none !important;
}

.footer .scroll-reveal-left {
    animation: slideInFromLeft 0.8s ease-out;
}

.footer .scroll-reveal {
    animation: fadeInUp 0.8s ease-out;
}

.footer .scroll-reveal-right {
    animation: slideInFromRight 0.8s ease-out;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   Coming Soon Page Styles - Minimal Design
======================================== */

.coming-soon-body {
    overflow-x: hidden;
}

.coming-soon-minimal {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.coming-soon-wrapper {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.coming-brand {
    margin-bottom: 10px;
}

.coming-logo {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
    animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coming-main-title {
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
    letter-spacing: 15px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.coming-social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.coming-social-icon {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.coming-social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

.coming-description {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 50px;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.coming-back-section {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.coming-back-btn,
.coming-contact-btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.coming-back-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.coming-back-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

.coming-contact-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #764ba2;
    border: 2px solid transparent;
}

.coming-contact-btn:hover {
    background: #fff;
    color: #764ba2;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .coming-soon-minimal {
        padding: 50px 20px;
    }
    
    .coming-logo {
        max-width: 250px;
    }
    
    .coming-main-title {
        font-size: 4rem;
        letter-spacing: 10px;
    }
    
    .coming-description {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .coming-soon-minimal {
        padding: 60px 15px 40px;
    }
    
    .coming-brand {
        margin-bottom: 40px;
    }
    
    .coming-logo {
        max-width: 200px;
    }
    
    .coming-main-title {
        font-size: 2.5rem;
        letter-spacing: 5px;
        margin-bottom: 20px;
    }
    
    .coming-description {
        font-size: 0.9rem;
        margin-top: 30px;
        margin-bottom: 40px;
    }
    
    .coming-back-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .coming-back-btn,
    .coming-contact-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .coming-logo {
        max-width: 160px;
    }
    
    .coming-main-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .coming-description {
        font-size: 0.85rem;
    }
}

/* WhatsApp Buttons Responsive */
@media (max-width: 768px) {
    .whatsapp-buttons-container {
        bottom: 20px;
        left: 20px;
        gap: 12px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    
    .whatsapp-business::after {
        width: 18px;
        height: 18px;
        font-size: 10px;
        bottom: -1px;
        right: -1px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }
}