/* Global Styles */
:root {
    --primary-color: #4361ee;
    --primary-hover: #3a56d4;
    --secondary-color: #ff6b6b;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --bg-color: #f4f7fe;
    --border-color: #e1e5ee;
    --text-color: #222222;
    --gray-color: #303030;
    --primary-rgb: 67, 97, 238;
    --light-text: #303030;
    --background: #ffffff;
    --light-background: #f3f4f6;
}

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

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

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f6f8ff 0%, #ffffff 100%);
    z-index: -2;
}

.animated-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.1;
}

.shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.shape:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

.shape:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
}

.shape:nth-child(4) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 10%;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
    top: 40px;
}

.navbar .brand-text {
    background: linear-gradient(45deg, #003366, #4AA3BA);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    font-size: 1.5rem;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.navbar .brand-text:hover {
    background: linear-gradient(45deg, #4AA3BA, #003366);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.navbar .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--primary-color);
}

/* Navigation Dropdown Styles */
.navbar .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 144, 226, 0.1);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 300px;
    max-height: 80vh;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    position: absolute;
    z-index: 1000;
}

.navbar .dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.navbar .dropdown-item {
    color: var(--text-color);
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    white-space: normal;
}

.navbar .dropdown-item i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-right: 0.8rem;
    transition: all 0.3s ease;
    width: 20px;
    text-align: center;
}

.navbar .dropdown-item:hover {
    background: rgba(74, 144, 226, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.navbar .dropdown-item:hover i {
    transform: scale(1.1);
}

/* Custom scrollbar for dropdown */
.navbar .dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.navbar .dropdown-menu::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.navbar .dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.navbar .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Form Button Styles */
.contact-form .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Mobile Responsive Styles */
@media (max-width: 991px) {
    .navbar .dropdown-menu {
        background: transparent;
        border: none;
        box-shadow: none;
        padding-left: 1rem;
        position: static;
        max-height: none;
        display: none;
        opacity: 0;
        transform: none;
        margin-top: 0;
    }
    
    .navbar .dropdown-menu.show {
        display: block;
        opacity: 1;
        transform: none;
    }
    
    .navbar .dropdown-item {
    color: var(--text-color);
        padding: 0.5rem 1rem;
    }
    
    .navbar .dropdown-item:hover {
        background: transparent;
        transform: translateX(5px);
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .btn {
    width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0 50px;
    background: linear-gradient(135deg, #0b1120 0%, #1a2942 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at right top, rgba(var(--primary-rgb), 0.1), transparent 60%);
    z-index: 1;
}

.hero-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 30px;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -moz-background-clip: text;
    -o-background-clip: text;
    -webkit-text-fill-color: transparent;
    mask: linear-gradient(to right, #fff, #ccc);
    -webkit-mask: linear-gradient(to right, #fff, #ccc);
    -moz-mask: linear-gradient(to right, #fff, #ccc);
    -o-mask: linear-gradient(to right, #fff, #ccc);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.hero-buttons .btn-outline-light {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.hero-buttons .btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
}

.hero-buttons .btn-outline-light:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-buttons .btn-outline-light i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.hero-buttons .btn-outline-light:hover i {
    transform: translateX(5px);
}

@media (max-width: 767px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

.hero-image-container {
    position: relative;
    flex: 1;
    max-width: 500px;
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

.hero-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

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

.hero-shape {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    border-radius: 20px;
    transform: rotate(45deg);
    z-index: -1;
}

.hero-badge {
    position: absolute;
    bottom: -30px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.hero-badge-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.hero-badge-text {
    font-size: 0.8rem;
    color: #333;
    text-align: center;
    line-height: 1.2;
}

.hero-cards {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 20px;
    gap: 30px;
    z-index: 2;
    position: relative;
}

.hero-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    background: rgba(var(--primary-rgb), 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

/* Introduction Section */
.introduction {
    background: var(--background);
    position: relative;
    overflow: hidden;
}

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

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.intro-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.intro-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.experience-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.experience-badge .text {
    font-size: 0.9rem;
    line-height: 1.4;
}

.intro-cta {
    display: flex;
    gap: 1rem;
}

@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-container {
        max-width: 80%;
    }
    
    .hero-cards {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
    font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-image-container {
        max-width: 100%;
    }
    
    .hero-cards {
        flex-direction: column;
    }
    
    .hero-card {
        flex: 0 0 100%;
    }
}

/* Stats Section */
.stats {
    background: var(--background);
    padding: 4rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--background);
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Services Section */
.services {
    background: var(--light-background);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0) 100%);
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-scroll-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 2rem 0;
    padding: 1rem 0;
}

.services-scroll-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll 40s linear infinite;
}

.left-to-right .services-scroll-track {
    animation-direction: normal;
}

.right-to-left .services-scroll-track {
    animation-direction: reverse;
}

.services-scroll-track:hover {
    animation-play-state: paused;
}

.service-item {
    flex: 0 0 300px;
    background: var(--background);
    border-radius: 0.8rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-item:hover::before {
    opacity: 1;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 1.25rem;
    color: white;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: rotateY(180deg);
    background: var(--secondary-color);
}

.service-item:hover .service-icon i {
    transform: rotateY(180deg);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.service-content p {
    color: var(--light-text);
        margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

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

.service-link:hover {
    color: var(--secondary-color);
}

.service-link:hover i {
    transform: translateX(5px);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 5 - 1.5rem * 5));
    }
}

@media (max-width: 991px) {
    .service-item {
        flex: 0 0 280px;
    }
    
    .services-scroll-container {
        margin: 1.5rem 0;
    }
}

@media (max-width: 767px) {
    .services {
        padding: 3rem 0;
    }
    
    .service-item {
        flex: 0 0 260px;
        padding: 1.25rem;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
    }
    
    .service-content p {
    font-size: 0.9rem;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    position: relative;
    padding: 100px 0;
    color: #fff;
    background-color: #121212;
    overflow: hidden;
    z-index: 1;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: -1;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    z-index: -1;
}

.why-choose-us .animated-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.why-choose-us .particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: -1;
    animation: float 15s infinite ease-in-out;
}

.why-choose-us .particle:nth-child(1) {
    width: 180px;
    height: 180px;
    top: 10%;
    left: -50px;
    animation-delay: 0s;
    background: radial-gradient(circle at center, rgba(var(--primary-rgb), 0.15), transparent);
    filter: blur(5px);
}

.why-choose-us .particle:nth-child(2) {
    width: 220px;
    height: 220px;
    top: 60%;
    right: -70px;
    animation-delay: 2s;
    background: radial-gradient(circle at center, rgba(var(--primary-rgb), 0.1), transparent);
    filter: blur(7px);
}

.why-choose-us .particle:nth-child(3) {
    width: 120px;
    height: 120px;
    bottom: 10%;
    left: 15%;
    animation-delay: 4s;
    background: radial-gradient(circle at center, rgba(var(--primary-rgb), 0.08), transparent);
    filter: blur(4px);
}

.why-choose-us .particle:nth-child(4) {
    width: 150px;
    height: 150px;
    top: 25%;
    right: 20%;
    animation-delay: 6s;
    background: radial-gradient(circle at center, rgba(var(--primary-rgb), 0.12), transparent);
    filter: blur(6px);
}

.why-choose-us .particle:nth-child(5) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 30%;
    animation-delay: 8s;
    background: radial-gradient(circle at center, rgba(var(--primary-rgb), 0.07), transparent);
    filter: blur(3px);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(5deg);
    }
    50% {
        transform: translateY(10px) translateX(20px) rotate(-5deg);
    }
    75% {
        transform: translateY(15px) translateX(-15px) rotate(3deg);
    }
}

.why-choose-us .section-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.why-choose-us .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.why-choose-us .section-subtitle {
    color: #f0f0f0;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%);
    z-index: -1;
    transition: all 0.5s ease;
    opacity: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), rgba(var(--primary-rgb), 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    animation: spin 20s linear infinite;
    z-index: -1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.5);
}

.feature-icon i {
    font-size: 28px;
    color: #fff;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    transition: all 0.3s ease;
}

.feature-card:hover h4 {
    color: var(--primary-color);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-card .btn-learn {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.feature-card:hover .btn-learn {
    opacity: 1;
    transform: translateY(0);
}

.feature-card .btn-learn:hover {
    color: #fff;
    text-decoration: underline;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 991px) {
    .why-choose-us {
        padding: 80px 0;
    }
    
    .feature-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .why-choose-us {
        padding: 60px 0;
    }
    
    .why-choose-us .section-title {
        font-size: 2rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
}

.why-choose-stats {
    margin-top: 60px;
    padding-top: 40px;
    position: relative;
}

.why-choose-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.stat-counter {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
}

.stat-counter:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-counter:hover::before {
    opacity: 1;
}

.counter-number {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-mask: linear-gradient(90deg, #fff, var(--primary-color));
    mask: linear-gradient(90deg, #fff, var(--primary-color));
    -webkit-text-fill-color: transparent;
    display: inline-block;
    line-height: 1;
}

.stat-counter span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    margin-left: 2px;
}

.stat-counter p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-top: 5px;
    font-weight: 500;
}

/* Testimonials Section Styles */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23e9ecef"/></svg>');
    opacity: 0.5;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-item {
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.testimonial-item:hover {
    transform: translateY(-10px);
}

.testimonial-bubble {
    background: white;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    border-left: 5px solid transparent;
    background-image: linear-gradient(white, white), 
                      linear-gradient(to right, var(--primary-color), var(--secondary-color));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to bottom, black 95%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 95%, transparent 100%);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.testimonial-arrow {
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 20px;
    height: 20px;
    background: white;
    transform: rotate(45deg);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.08);
    z-index: -1;
}

.quote-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
    position: absolute;
    right: 25px;
    top: -25px;
    -webkit-mask-image: radial-gradient(circle, black 50%, transparent 70%);
    mask-image: radial-gradient(circle, black 50%, transparent 70%);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.quote-icon i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.rating {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    gap: 5px;
}

.testimonial-bubble p {
    font-size: 1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.testimonial-client {
    display: flex;
    align-items: center;
    padding-left: 15px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    -webkit-mask-image: radial-gradient(circle, black 100%, transparent 100%);
    mask-image: radial-gradient(circle, black 100%, transparent 100%);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.testimonial-item:hover .client-avatar {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.avatar-placeholder {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.client-info h5 {
    margin: 0;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

.client-label {
    display: inline-block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #6c757d;
    background: rgba(0, 123, 255, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
}

.testimonial-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    width: 30px;
    border-radius: 10px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-mask-image: linear-gradient(to right, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, black 90%, transparent 100%);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: left;
    mask-position: left;
}

@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto 30px;
    }
    
    .testimonial-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .testimonial-bubble {
        padding: 25px 20px;
    }
    
    .quote-icon {
        width: 40px;
        height: 40px;
        right: 20px;
        top: -20px;
    }
    
    .quote-icon i {
        font-size: 1.1rem;
    }
    
    .client-avatar {
        width: 50px;
        height: 50px;
    }
    
    .avatar-placeholder {
        font-size: 1rem;
    }
    
    .client-info h5 {
        font-size: 1rem;
    }
    
    .client-label {
        font-size: 0.75rem;
    }
}

/* Contact Section */
.contact {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.contact-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.contact-particles .particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 15s infinite linear;
}

.contact-particles .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.contact-particles .particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.contact-particles .particle:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

.contact-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    width: 300px;
    height: 200px;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.contact-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-front {
    background: white;
    color: var(--dark-color);
}

.card-back {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.contact-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.card-front h3 {
    font-size: 1.5rem;
    margin: 0;
}

.card-back h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.card-back p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.contact-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.contact-link:hover {
    transform: translateY(-3px);
    color: white;
}

/* Social Media Links */
.social-connect {
    margin-top: 50px;
}

.social-links-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link span {
    font-weight: 500;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.whatsapp {
    background: #25d366;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

@media (max-width: 992px) {
    .contact-cards-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        width: 100%;
        max-width: 300px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .social-links-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

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

.footer h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-links a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero h1 {
    font-size: 2.5rem;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .hero-buttons {
    justify-content: center;
    }
    
    .services-scroll-container {
        margin: 1.5rem 0;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
    
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .services {
        padding: 4rem 0;
    }
    
    .services-scroll-container {
        margin: 1.5rem 0;
    }
}

/* Animations */
[data-aos] {
        opacity: 0;
    transition: all 0.6s ease;
    }

[data-aos].aos-animate {
        opacity: 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-background);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Mission & Vision Section - Enhanced Design */
.mission-vision {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 15% 25%, rgba(var(--primary-rgb), 0.2) 0%, transparent 50%);
    z-index: -1;
}

.mission-vision::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle at 85% 85%, rgba(var(--primary-rgb), 0.15) 0%, transparent 60%);
    z-index: -1;
}

.mission-vision .row {
    position: relative;
    z-index: 2;
}

.mission-vision .container::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 70%;
    background: linear-gradient(to bottom, transparent, rgba(var(--primary-rgb), 0.7), transparent);
    left: 50%;
    top: 15%;
    transform: translateX(-50%);
    z-index: 1;
}

.mission-card, .vision-card {
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, transparent 80%);
    z-index: -1;
}

.mission-card::after, .vision-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    z-index: -1;
    transition: all 0.6s ease-out;
}

.mission-card::after {
    top: -100px;
    right: -100px;
}

.vision-card::after {
    bottom: -100px;
    left: -100px;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mission-card:hover::after {
    transform: scale(1.5);
    opacity: 0.2;
}

.vision-card:hover::after {
    transform: scale(1.5);
    opacity: 0.2;
}

.mission-icon, .vision-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    font-size: 2.2rem;
    background: linear-gradient(45deg, rgba(67, 97, 238, 0.1), rgba(67, 97, 238, 0.05));
    color: #4361ee;
}

.mission-icon::before, .vision-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: inherit;
    padding: 5px;
    background: linear-gradient(315deg, var(--primary-color), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: spinGlow 8s linear infinite;
}

.mission-icon i, .vision-icon i {
    font-size: 2.5rem;
    color: #fff;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.mission-card:hover .mission-icon i, .vision-card:hover .vision-icon i {
    transform: scale(1.2);
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.mission-card h3::after, .vision-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mission-card:hover h3::after, .vision-card:hover h3::after {
    width: 80px;
    background: linear-gradient(to right, var(--primary-color), rgba(var(--primary-rgb), 0.5));
}

.mission-card p, .vision-card p {
    color: #6b7280;
    margin-bottom: 0;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(67, 97, 238, 0.1);
}

/* Floating particles for mission vision section */
.mission-vision-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.mission-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
    opacity: 0;
    animation: floatParticle 20s ease-in-out infinite, fadeInOut 8s ease-in-out infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-50px) translateX(20px);
    }
    50% {
        transform: translateY(-20px) translateX(50px);
    }
    75% {
        transform: translateY(-70px) translateX(10px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

/* Responsive styles */
@media (max-width: 991px) {
    .mission-vision {
        padding: 80px 0;
    }
    
    .mission-vision .container::before {
        display: none;
    }
    
    .mission-card, .vision-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .mission-vision {
        padding: 60px 0;
    }
    
    .mission-icon, .vision-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .mission-icon i, .vision-icon i {
        font-size: 1.8rem;
    }
    
    .mission-card h3, .vision-card h3 {
        font-size: 1.5rem;
    }
}

/* Animation for dynamic particles */
.dynamic-particle {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    animation-name: float, fadeInOut;
    animation-duration: 30s, 10s;
    animation-timing-function: ease-in-out, ease-in-out;
    animation-iteration-count: infinite, infinite;
    animation-direction: normal, alternate;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Pulse animation for feature icons */
.pulse-animation {
    animation: icon-pulse 1s ease-in-out;
}

@keyframes icon-pulse {
    0% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.6);
    }
    70% { 
    transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(var(--primary-rgb), 0);
    }
    100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0);
    }
}

.half-hidden-text {
    position: absolute;
    font-size: 150px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    letter-spacing: 5px;
    pointer-events: none;
    animation: textFloat 8s ease-in-out infinite;
}

@keyframes textFloat {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(-2deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(2deg);
    }
}

.navbar-logo {
    height: 65px;
    margin-right: 10px;
    transition: none;
    object-fit: contain;
    margin-top: -8px;
    margin-bottom: -8px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 600;
}

.navbar-brand:hover .navbar-logo {
    transform: none;
    animation: none;
}

/* Core Values Section - Enhanced Design */
.values {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(145deg, #0c1220 0%, #1a2436 100%);
    color: #fff;
    overflow: hidden;
    perspective: 1200px;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='rgba(255,255,255,0.05)' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 0;
}

.values::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle at 85% 85%, rgba(var(--primary-rgb), 0.15) 0%, transparent 60%);
    z-index: 0;
}

.values-header {
    text-align: center;
    position: relative;
    margin-bottom: 80px;
    z-index: 1;
}

.values .section-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.02em;
}

.values .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    margin-top: 10px;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.value-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto;
    position: relative;
}

.value-divider::before, .value-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    transform: translateY(-50%);
    box-shadow: 0 0 10px var(--primary-color);
}

.value-divider::before {
    left: -4px;
}

.value-divider::after {
    right: -4px;
}

/* 3D Prism Layout */
.values-prism-container {
    position: relative;
    margin: 50px auto;
    max-width: 1200px;
}

.prism-ring {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 15px;
    height: auto;
    margin: 0 auto;
    transform-style: flat;
    transform: none;
    transition: none;
}

.prism-item {
    position: relative;
    width: calc(25% - 15px);
    min-width: 220px;
    height: auto;
    margin-bottom: 30px;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.prism-item:nth-child(odd):hover {
    transform: translateY(-15px);
    z-index: 2;
}

.prism-item:nth-child(even):hover {
    transform: translateY(15px);
    z-index: 2;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
    50% { box-shadow: 0 5px 25px rgba(var(--primary-rgb), 0.3); }
    100% { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
}

.prism-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px 15px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.prism-item:hover .prism-content {
    border-color: rgba(var(--primary-rgb), 0.5);
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.2);
    animation: pulse-glow 2s infinite;
}

.prism-icon {
    margin-bottom: 15px;
}

.prism-content h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.prism-description {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.prism-bullet-points {
    padding-left: 0;
    margin-top: 10px;
    list-style: none;
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .prism-ring {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .prism-item {
        width: calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .prism-item {
        width: 100%;
    }
}

.prism-item:nth-child(1), 
.prism-item:nth-child(2), 
.prism-item:nth-child(3), 
.prism-item:nth-child(4) {
    position: relative;
    display: block;
    transform: none !important;
}

.prism-item:nth-child(1) {
    transform: rotateY(0deg) translateZ(400px);
}

.prism-item:nth-child(2) {
    transform: rotateY(90deg) translateZ(400px);
}

.prism-item:nth-child(3) {
    transform: rotateY(180deg) translateZ(400px);
}

.prism-item:nth-child(4) {
    transform: rotateY(270deg) translateZ(400px);
}

.prism-item:hover {
    transform: translateZ(430px) scale(1.05) rotateY(0);
    z-index: 10;
}

.prism-item:hover .prism-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(var(--primary-rgb), 0.5);
}

.prism-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prism-item:hover .prism-content::after {
    opacity: 1;
}

.prism-icon {
    width: 100px;
    height: 100px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(135deg, var(--primary-color), rgba(var(--primary-rgb), 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    animation: morphShape 8s infinite alternate;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.prism-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: inherit;
    padding: 5px;
    background: linear-gradient(315deg, var(--primary-color), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: spinGlow 8s linear infinite;
}

@keyframes spinGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.prism-icon i {
    font-size: 2.5rem;
    color: #fff;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
    transition: transform 0.4s ease;
}

.prism-item:hover .prism-icon {
    transform: scale(1.15) translateY(-10px);
    box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.4);
}

.prism-item:hover .prism-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.7));
}

.prism-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    letter-spacing: -0.01em;
    transition: transform 0.4s ease, background 0.4s ease;
}

.prism-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.4s ease, background 0.4s ease;
}

.prism-item:hover h3 {
    transform: translateY(-5px);
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prism-item:hover h3::after {
    width: 60px;
    background: linear-gradient(to right, var(--primary-color), rgba(var(--primary-rgb), 0.5));
}

.prism-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.prism-item:hover .prism-description {
    transform: translateY(-5px);
    color: rgba(255, 255, 255, 0.95);
}

.prism-bullet-points {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
    transition: transform 0.4s ease;
}

.prism-bullet-points li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    opacity: 0.85;
    transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease;
    transform: translateX(0);
}

.prism-bullet-points li:nth-child(1) {
    transition-delay: 0.05s;
}

.prism-bullet-points li:nth-child(2) {
    transition-delay: 0.1s;
}

.prism-bullet-points li:nth-child(3) {
    transition-delay: 0.15s;
}

.prism-bullet-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
}

.prism-item:hover .prism-bullet-points li {
    transform: translateX(5px);
    opacity: 1;
    color: rgba(255, 255, 255, 0.9);
}

.prism-item:hover .prism-bullet-points li::before {
    transform: scale(1.2);
    background: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
}

.prism-action {
    display: none; /* Hide the button container */
}

.prism-button {
    display: none; /* Hide the button itself */
}

/* Adjust spacing to compensate for removed button */
.prism-description {
    margin-bottom: 0;
}

.prism-bullet-points {
    margin-bottom: 0;
}

/* Hide CTA button section in values */
.values-cta-button {
    display: none;
}

/* Adjust mobile view buttons */
.values-mobile-item .prism-action, 
.values-mobile-item .prism-button {
    display: none;
}

/* Values CTA Section */
.values-cta {
    text-align: center;
    margin-top: 80px;
    position: relative;
    z-index: 3;
}

.values-cta-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.values-cta-button {
    display: inline-block;
    padding: 16px 36px;
    background: rgba(var(--primary-rgb), 0.15);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.values-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), rgba(var(--primary-rgb), 0.8));
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.values-cta-button:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(var(--primary-rgb), 0.2);
}

.values-cta-button:hover::before {
    width: 100%;
}

/* Mobile Values Section */
.values-mobile {
    display: none;
}

.values-mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.values-mobile-item {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 20px;
    padding: 35px 30px;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.values-mobile-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15) 0%, transparent 100%);
    z-index: -1;
}

.values-mobile-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(var(--primary-rgb), 0.1);
}

.mobile-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), rgba(var(--primary-rgb), 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.4s ease;
}

.mobile-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 24px;
    background: linear-gradient(315deg, var(--primary-color), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.7;
}

.mobile-icon i {
    font-size: 2rem;
    color: #fff;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
    transition: transform 0.4s ease;
}

.values-mobile-item:hover .mobile-icon {
    transform: scale(1.1) translateY(-5px);
}

.values-mobile-item:hover .mobile-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.7));
}

.values-mobile-item h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
    transition: color 0.3s ease;
}

.values-mobile-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.4s ease, background 0.4s ease;
}

.values-mobile-item:hover h3::after {
    width: 60px;
    background: linear-gradient(to right, var(--primary-color), rgba(var(--primary-rgb), 0.5));
}

.values-mobile-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.values-mobile-item:hover p {
    color: rgba(255, 255, 255, 0.95);
}

.mobile-bullet-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-bullet-points li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-bullet-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-color);
    transition: all 0.3s ease;
}

.values-mobile-item:hover .mobile-bullet-points li {
    transform: translateX(5px);
    color: rgba(255, 255, 255, 0.85);
}

.values-mobile-item:hover .mobile-bullet-points li::before {
        transform: scale(1.2);
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

/* Responsive Design for Values Section */
@media (max-width: 1200px) {
    .values-prism-container {
        height: 600px;
    }
    
    .prism-ring {
        transform: scale(0.85);
    }
    
    .prism-item:nth-child(1),
    .prism-item:nth-child(2),
    .prism-item:nth-child(3),
    .prism-item:nth-child(4) {
        transform: rotateY(var(--rotate)) translateZ(350px);
    }
    
    .prism-item:nth-child(1) { --rotate: 0deg; }
    .prism-item:nth-child(2) { --rotate: 90deg; }
    .prism-item:nth-child(3) { --rotate: 180deg; }
    .prism-item:nth-child(4) { --rotate: 270deg; }
}

@media (max-width: 991px) {
    .values {
        padding: 80px 0;
    }
    
    .values .section-title {
        font-size: 2.5rem;
    }
    
    .values .section-subtitle {
        font-size: 1.1rem;
    }
    
    .values-prism-container {
        display: none;
    }
    
    .values-mobile {
        display: block;
    }
    
    .values-mobile-grid {
        gap: 25px;
    }
    
    .values-mobile-item {
        padding: 30px 25px;
    }
    
    .mobile-icon {
        width: 70px;
        height: 70px;
    }
    
    .mobile-icon i {
        font-size: 1.8rem;
    }
    
    .values-mobile-item h3 {
        font-size: 1.5rem;
    }
    
    .values-cta-text {
        font-size: 1.3rem;
    }
    
    .values-cta-button {
        padding: 14px 32px;
    }
}

@media (max-width: 767px) {
    .values {
        padding: 70px 0;
    }
    
    .values .section-title {
        font-size: 2.2rem;
    }
    
    .values .section-subtitle {
        font-size: 1rem;
    }
    
    .values-mobile-grid {
        grid-template-columns: 1fr;
    }
    
    .values-mobile-item {
        padding: 25px 20px;
    }
    
    .mobile-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .mobile-icon i {
        font-size: 1.6rem;
    }
    
    .values-mobile-item h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
    
    .values-mobile-item p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .mobile-bullet-points li {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .values-cta {
        margin-top: 50px;
    }
    
    .values-cta-text {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .values-cta-button {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

/* New Hero Section Styles */
.hero-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    overflow: hidden;
    background: transparent;
}

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

#hero-particles {
    width: 100%;
    height: 100%;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-column {
    position: relative;
    padding: 30px 0;
}

.hero-text-content {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    padding: 8px 16px;
    background: rgba(var(--primary-rgb), 0.15);
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(var(--primary-rgb), 0.25);
    backdrop-filter: blur(10px);
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #007bff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.hero-subheading {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #007bff;
    font-weight: 400;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    margin-bottom: 35px;
    gap: 40px;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

.hero-stat-item {
    text-align: left;
}

.hero-stat-number {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    display: inline-block;
}

.hero-stat-item span:not(.hero-stat-number) {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.hero-stat-item p {
    margin-top: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-buttons {
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1s;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    gap: 10px;
}

.hero-buttons .btn-primary {
    background: linear-gradient(45deg, var(--primary-color), rgba(var(--primary-rgb), 0.8));
    border: none;
    color: white;
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(var(--primary-rgb), 0.4);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.hero-buttons .btn-outline-light {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-buttons .btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.2), transparent);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.hero-buttons .btn-outline-light:hover {
    border-color: rgba(var(--primary-rgb), 0.5);
    transform: translateY(-5px);
}

.hero-buttons .btn-outline-light:hover::before {
    width: 100%;
}

.hero-buttons .btn-outline-light i {
    transition: transform 0.3s ease;
}

.hero-buttons .btn-outline-light:hover i {
    transform: translateX(5px);
}

.hero-visual-column {
    position: relative;
}

.hero-visual-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    filter: blur(30px);
    opacity: 0;
    animation: fadeIn 1.5s ease forwards 1.2s;
}

.hero-main-image {
    max-width: 70%;
    max-height: 70%;
    z-index: 2;
    animation: floatImage 6s ease-in-out infinite;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.8s, floatImage 6s ease-in-out infinite 1.8s;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.float-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: floatElement 3s ease-in-out infinite;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.float-element i {
    font-size: 1.2rem;
    color: #007bff;
}

.float-element span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #007bff;
}

#float-web {
    top: 20%;
    left: 10%;
    animation-delay: 1.2s, 1.7s;
}

#float-social {
    top: 15%;
    right: 10%;
    animation-delay: 1.4s, 2s;
}

#float-brand {
    bottom: 20%;
    left: 5%;
    animation-delay: 1.6s, 2.3s;
}

#float-marketing {
    bottom: 15%;
    right: 10%;
    animation-delay: 1.8s, 2.6s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(10px, -15px);
    }
    50% {
        transform: translate(20px, 0px);
    }
    75% {
        transform: translate(5px, -10px);
    }
}

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

.hero-clients {
    display: none;
}

.trusted-by {
    display: none;
}

.client-logos {
    display: none;
}

.client-logo {
    display: none;
}

.client-logo img {
    display: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    animation: fadeIn 1s ease forwards 2s, bounce 2s infinite 3s;
    opacity: 0;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 1.5s infinite;
}

.scroll-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

@keyframes wheelScroll {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0;
    }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Media Queries for Hero Section */
@media (max-width: 1200px) {
    .hero-heading {
        font-size: 3.2rem;
    }
    
    .hero-subheading {
        font-size: 1.1rem;
    }
    
    #float-web, #float-brand {
        left: 0;
    }
    
    #float-social, #float-marketing {
        right: 0;
    }
}

@media (max-width: 991px) {
    .hero-new {
        padding: 100px 0 80px;
    }
    
    .hero-heading {
        font-size: 2.8rem;
    }
    
    .hero-text-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 50px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-container {
        height: 400px;
    }
    
    .float-element {
        padding: 10px;
    font-size: 0.9rem;
    }
    
    .float-element i {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .hero-new {
        padding: 90px 0 60px;
    }
    
    .hero-heading {
        font-size: 2.2rem;
    }
    
    .hero-subheading {
        font-size: 1rem;
    }
    
    .hero-stat-number, .hero-stat-item span:not(.hero-stat-number) {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-image-container {
        height: 300px;
    }
    
    .client-logos {
        gap: 20px;
    }
    
    .client-logo img {
        max-height: 30px;
    }
    
    #float-web {
        top: 10%;
        left: 5%;
    }
    
    #float-social {
        top: 10%;
        right: 5%;
    }
    
    #float-brand {
        bottom: 10%;
        left: 5%;
    }
    
    #float-marketing {
        bottom: 10%;
        right: 5%;
    }
}

/* Web Design Page Styles */
.web-features {
    background: var(--light-bg);
}

.web-features .feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.web-features .feature-card:hover {
    transform: translateY(-5px);
}

.web-features .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.web-features .feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.web-features .feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.web-features .feature-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.web-features .feature-list li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Web Design Process */
.web-process {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.web-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23dee2e6"/></svg>');
    opacity: 0.1;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.process-step {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: translateX(-50%) scale(1.1);
    background: var(--secondary-color);
}

.step-content {
    width: calc(50% - 40px);
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:nth-child(odd) .step-content {
    margin-left: auto;
}

.process-step:nth-child(even) .step-content {
    margin-right: auto;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: white;
    transform: rotate(45deg);
}

.process-step:nth-child(odd) .step-content::before {
    left: -10px;
}

.process-step:nth-child(even) .step-content::before {
    right: -10px;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.step-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.process-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles for Process Timeline */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 30px;
    }

    .step-number {
        left: 30px;
    transform: translateX(-50%);
    }

    .step-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }

    .step-content::before {
        left: -10px !important;
    }

    .process-step:nth-child(even) .step-content::before {
        left: -10px;
    }
}

/* Technologies Section */
.technologies {
    background: var(--white);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-item {
        text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.tech-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.tech-item span {
    display: block;
    font-weight: 500;
}

/* Pricing Section */
.pricing-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
    }

    .pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark);
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

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

.pricing-features {
    margin-bottom: 2rem;
}

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

.pricing-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.pricing-action {
    text-align: center;
}

/* FAQ Section */
.faq .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
}

.faq .accordion-button {
    background: var(--white);
    padding: 1.5rem;
    font-weight: 500;
    color: var(--dark);
}

.faq .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
}

.faq .accordion-body {
    padding: 1.5rem;
    background: var(--light-bg);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .process-timeline::before {
        left: 20px;
    }
    
    .process-step {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 40px;
    }
    
    .step-number {
        margin-bottom: 1rem;
    }

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 767px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

.service-header img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-header img:hover {
    transform: scale(1.02);
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .service-header img {
        max-width: 500px;
        margin: 2rem auto;
    }
    
    .hero-image {
        max-width: 600px;
        margin: 2rem auto;
    }
}

@media (max-width: 767px) {
    .service-header img {
        max-width: 100%;
    }
    
    .hero-image {
        max-width: 100%;
    }
}

/* Floating Package Animation */
.floating-package-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-package {
    position: absolute;
    font-size: 2rem;
    animation: floatPackage 15s linear infinite;
    color: var(--primary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.floating-package:nth-child(1) {
    top: 20%;
    left: -50px;
    animation-delay: 0s;
    font-size: 2.5rem;
}

.floating-package:nth-child(2) {
    top: 50%;
    left: -50px;
    animation-delay: 5s;
    font-size: 2rem;
}

.floating-package:nth-child(3) {
    top: 80%;
    left: -50px;
    animation-delay: 10s;
    font-size: 1.8rem;
}

@keyframes floatPackage {
    0% {
        left: -50px;
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(0) rotate(180deg);
    }
    75% {
        transform: translateY(20px) rotate(270deg);
    }
    100% {
        left: calc(100% + 50px);
        transform: translateY(0) rotate(360deg);
    }
}

/* Hover effect for packages */
.floating-package:hover {
    opacity: 0.8;
    transform: scale(1.2);
    color: var(--accent-color);
}

/* Add responsive styles */
@media (max-width: 768px) {
    .floating-package {
        font-size: 1.5rem;
    }
    
    .floating-package:nth-child(1) {
        font-size: 2rem;
    }
    
    .floating-package:nth-child(2) {
        font-size: 1.5rem;
    }
    
    .floating-package:nth-child(3) {
    font-size: 1.3rem;
    }
}

/* WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: whatsappPulse 2s infinite;
    text-decoration: none;
}

.whatsapp-chat::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.7;
    z-index: -1;
    animation: whatsappRing 2s infinite;
}

.whatsapp-chat i {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.whatsapp-chat:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-chat:hover i {
    transform: scale(1.1);
}

.chat-tooltip {
    position: absolute;
    right: 70px;
    background-color: #075E54;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.chat-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #075E54;
}

.whatsapp-chat:hover .chat-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
    transform: translateX(0);
}

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

@keyframes whatsappRing {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.4);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@media (max-width: 767px) {
    .whatsapp-chat {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-chat i {
        font-size: 1.7rem;
    }

    .chat-tooltip {
        display: none;
    }
}

/* Email Marketing Page Image Zoom Effect */
.email-marketing-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.email-marketing-image:hover {
    transform: translateY(-5px);
}

.email-marketing-image:hover img {
    transform: scale(1.1);
}

/* Add overlay effect on hover */
.email-marketing-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.email-marketing-image:hover::after {
    opacity: 1;
}

/* Add caption effect */
.email-marketing-image .image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1;
}

.email-marketing-image:hover .image-caption {
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .email-marketing-image {
        margin: 1rem 0;
    }
    
    .email-marketing-image:hover img {
        transform: scale(1.05);
    }
} 

/* Package Design Showcase Section */
.package-design-showcase {
    position: relative;
    margin-top: 80px;
    border-radius: 20px;
    background: #ffffff;
    overflow: hidden;
    color: #333;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.package-design-showcase::before {
    display: none;
}

.package-design-showcase .section-title {
    color: #333;
}

.package-design-showcase .section-badge {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
}

.package-design-showcase .container {
    position: relative;
    z-index: 2;
}

.package-design-features {
    margin-top: 30px;
}

.package-design-features .feature-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.package-design-features .feature-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.package-design-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.package-design-features .feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.package-design-image {
    position: relative;
    border-radius: 15px;
    overflow: visible;
    transition: all 0.5s ease;
    padding: 40px;
    background: linear-gradient(135deg, #4a6baf 0%, #1a3a8f 100%);
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(26, 58, 143, 0.3);
}

.package-design-image img {
    width: auto;
    max-width: 120%;
    height: auto;
    min-height: 400px;
    transition: all 0.5s ease;
    animation: floatPackageImage 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
    transform-origin: center center;
    filter: none;
    background: transparent;
    margin-left: -10%;
}

@keyframes floatPackageImage {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.package-design-image:hover {
    transform: translateY(-10px);
}

.package-design-image img {
    width: 100%;
    transition: all 0.5s ease;
    animation: floatPackageImage 4s ease-in-out infinite;
}

@keyframes floatPackageImage {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.package-design-image:hover img {
    transform: scale(1.05);
    animation-play-state: paused;
}

.package-design-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.package-design-image:hover .image-overlay {
    opacity: 1;
    transform: translateY(0);
}

.image-overlay .overlay-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.image-overlay .overlay-content i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.image-overlay .overlay-content span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

@media (max-width: 991px) {
    .package-design-showcase {
        padding: 60px 0;
    }
    
    .package-design-image {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .package-design-features .feature-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .package-design-image .image-overlay {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Small Mission & Vision Styles */
.mission-small, .vision-small {
    padding: 20px;
    border-radius: 12px;
    min-height: auto;
}

.small-icon {
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
}

.small-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.small-text {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* New Mission & Vision Styles */
.mission-vision-new {
    padding: 60px 0;
    position: relative;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    overflow: hidden;
}

.mission-vision-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.mission-card-new, .vision-card-new {
    flex: 1;
    position: relative;
    border-radius: 16px;
    padding: 30px;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    text-align: center;
    max-width: 350px;
}

.mission-card-new:hover, .vision-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(67, 97, 238, 0.15);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
}

.mission-card-new .card-glow {
    background: radial-gradient(circle at 50% 50%, rgba(67, 97, 238, 0.08), transparent 70%);
}

.vision-card-new .card-glow {
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.08), transparent 70%);
}

.mission-card-new:hover .card-glow, .vision-card-new:hover .card-glow {
    opacity: 1;
}

.mission-card-new::before, .vision-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transition: all 0.4s ease;
}

.mission-card-new::before {
    background: linear-gradient(90deg, #4361ee, #738BFF);
}

.vision-card-new::before {
    background: linear-gradient(90deg, #ff6b6b, #ffaa9d);
}

.icon-container {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
    background: #f8f9fa;
}

.mission-card-new .icon-container {
    color: #4361ee;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.15);
}

.vision-card-new .icon-container {
    color: #ff6b6b;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.15);
}

.mission-card-new:hover .icon-container, .vision-card-new:hover .icon-container {
    transform: rotateY(180deg);
}

.icon-container i {
    font-size: 1.8rem;
    transition: all 0.4s ease;
}

.mission-card-new:hover .icon-container i, .vision-card-new:hover .icon-container i {
    transform: rotateY(180deg);
}

.mission-content h3, .vision-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.mission-content h3 {
    color: #4361ee;
}

.vision-content h3 {
    color: #ff6b6b;
}

.mission-content h3::after, .vision-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    transition: all 0.4s ease;
}

.mission-card-new:hover .mission-content h3::after, .vision-card-new:hover .vision-content h3::after {
    width: 100%;
}

.mission-content h3::after {
    background: linear-gradient(90deg, #4361ee, transparent);
}

.vision-content h3::after {
    background: linear-gradient(90deg, #ff6b6b, transparent);
}

.mission-content p, .vision-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
}

@media (max-width: 767px) {
    .mission-vision-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .mission-card-new, .vision-card-new {
        width: 100%;
        max-width: 100%;
    }
}

/* New Services Section Styles */
.services-new {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    overflow: hidden;
}

.services-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(67, 97, 238, 0.03) 0%, rgba(255, 255, 255, 0) 80%);
    z-index: 0;
}

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

.featured-service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.featured-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(67, 97, 238, 0.1), rgba(67, 97, 238, 0.05));
    opacity: 0;
    transition: all 0.4s ease;
}

.featured-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
}

.featured-service-card:hover::before {
    opacity: 1;
}

.service-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.service-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #4361ee, #5e7bfa);
    border-radius: 20px;
    color: #ffffff;
    font-size: 2rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #5e7bfa, #4361ee);
    border-radius: 20px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.featured-service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    transition: all 0.4s ease;
}

.featured-service-card:hover .service-icon i {
    transform: scale(1.1);
}

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

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.service-content p {
    color: #222222;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #222222;
    font-size: 0.95rem;
}

.service-features li i {
    color: #4361ee;
    margin-right: 10px;
    font-size: 0.9rem;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: linear-gradient(45deg, #4361ee, #5e7bfa);
    color: #ffffff;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #5e7bfa, #4361ee);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-service:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
}

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

.btn-view-all {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: transparent;
    color: #4361ee;
    border: 2px solid #4361ee;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    margin-top: 40px;
}

.btn-view-all span {
    margin-right: 10px;
}

.btn-view-all i {
    transition: all 0.4s ease;
}

.btn-view-all:hover {
    background: #4361ee;
    color: #ffffff;
    transform: translateY(-3px);
}

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

@media (max-width: 1200px) {
    .featured-services {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 767px) {
    .featured-services {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        text-align: center;
    }
    
    .service-icon-wrapper {
        margin: 0 auto 25px;
    }
    
    .service-features li {
        justify-content: center;
    }
}

/* Image Slider Section */
.image-slider-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    overflow: hidden;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-slide {
    min-width: 100%;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.slide-content {
    position: relative;
    height: 500px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-location {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    mask: linear-gradient(to right, #fff, #ccc);
    -webkit-mask: linear-gradient(to right, #fff, #ccc);
    -moz-mask: linear-gradient(to right, #fff, #ccc);
    -o-mask: linear-gradient(to right, #fff, #ccc);
}

.slider-location i {
    margin-right: 8px;
    color: var(--primary-color);
}

.slider-location h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.slider-location p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Animation for slide change */
@keyframes slideChange {
    0% {
        transform: scale(0.95) rotateY(-5deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotateY(0);
        opacity: 1;
    }
}

.slider-slide.active .slide-content {
    animation: slideChange 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slider-slide.active .slider-location {
    transform: translateX(0);
    animation: slideInRight 0.5s ease forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide-content:hover .slide-overlay {
    opacity: 1;
}

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

.overlay-content {
    text-align: center;
    color: #ffffff;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.slide-content:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.overlay-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.overlay-content .btn {
    padding: 10px 25px;
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.overlay-content .btn:hover {
    background: #ffffff;
    color: #4361ee;
}

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.slider-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    color: #4361ee;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-nav-btn:hover {
    background: #4361ee;
    color: #ffffff;
    transform: translateY(-3px);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #4361ee;
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .slide-content {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .slide-content {
        height: 300px;
    }
    
    .overlay-content h3 {
        font-size: 1.5rem;
    }
    
    .overlay-content p {
        font-size: 1rem;
    }
    
    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Modern Hero Section with Background Slider */
.modern-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

.hero-slider-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider-background .carousel-item {
    height: 100vh;
}

.hero-slider-background .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.hero-slider-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    padding: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.hero-stat {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 1rem 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary {
    background: #007bff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.clients-bar {
    position: relative;
    z-index: 3;
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    margin-top: 2rem;
}

.clients-label {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
    text-align: center;
}

.clients-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.client-logo {
    color: #fff;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.2);
}

.scroll-down-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: #fff;
    text-align: center;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 15px;
    position: relative;
    margin: 0 auto;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 20px); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .clients-logos {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* Services Section New Design */
.services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
}

.service-box {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-box-inner {
    position: relative;
    height: 100%;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1;
}

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

.service-box.creative .service-hover-effect {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0.05) 100%);
}

.service-box.web .service-hover-effect {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0.05) 100%);
}

.service-box.marketing .service-hover-effect {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.05) 100%);
}

.service-box.branding .service-hover-effect {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
}

.service-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-box:hover .service-hover-effect {
    opacity: 1;
}

.service-icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

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

.service-icon i {
    font-size: 32px;
    color: #333;
}

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

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-tag {
    padding: 8px 15px;
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-box:hover .feature-tag {
    background: #007bff;
    color: #fff;
}

.service-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: #007bff;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    background: #0056b3;
    transform: translateX(5px);
}

.service-link i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
}

.btn-view-all:hover {
    background: #007bff;
    color: #fff;
}

.btn-view-all i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

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

@media (max-width: 991px) {
    .services-container {
        grid-template-columns: 1fr;
    }
    
    .service-box-inner {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .service-box-inner {
        padding: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .service-content h3 {
        font-size: 20px;
    }
    
    .feature-tag {
        padding: 6px 12px;
        font-size: 12px;
    }
}

.slider-heading {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    color: #fff;
}

.slider-heading h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.slider-heading p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.content-wrapper {
    padding: 2rem;
    transition: all 0.3s ease;
    background: none;
    backdrop-filter: none;
    box-shadow: none;
    border: none;
}

.content-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.content-wrapper p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.slider-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.slider-features span {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #fff;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.slider-features span:hover {
    background: rgba(255, 255, 255, 0.25);
}

.slider-features i {
    margin-right: 0.5rem;
}

.slider-buttons {
    display: flex;
    gap: 1rem;
}

.slider-buttons .btn {
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.slider-buttons .btn-primary {
    background: #007bff;
    border: none;
}

.slider-buttons .btn-primary:hover {
    background: #0056b3;
}

.slider-buttons .btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.slider-buttons .btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .slider-heading {
        padding: 1rem 0;
    }
    
    .slider-heading h2 {
        font-size: 2rem;
    }
    
    .slider-heading p {
        font-size: 1rem;
    }
    
    .content-wrapper {
        padding: 1.5rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.5rem;
    }
    
    .slider-features span {
        font-size: 0.8rem;
    }
    
    .slider-buttons .btn {
        padding: 0.6rem 1.2rem;
    }
}

/* Slider Content Styles */
.slider-content {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 1200px;
    z-index: 2;
    padding: 0 20px;
}

.slider-content .buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.slider-content .btn {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.slider-content .btn-primary {
    background: rgba(0, 123, 255, 0.9);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-content .btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    backdrop-filter: blur(5px);
}

.slider-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Carousel Overlay */
.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .slider-content {
        bottom: 5%;
    }
    
    .slider-content .buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .slider-content .btn {
        width: 100%;
        max-width: 250px;
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Top Bar Styles */
.top-bar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 8px 0;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar .contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar .contact-item {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.top-bar .contact-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.top-bar .contact-item:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.top-bar .social-links-top {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

.top-bar .social-links-top a {
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.top-bar .social-links-top a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.top-bar .social-links-top a i {
    font-size: 1rem;
}

/* Responsive styles for top bar */
@media (max-width: 991px) {
    .top-bar {
        padding: 5px 0;
    }
    
    .top-bar .contact-info {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
    
    .top-bar .social-links-top {
        justify-content: flex-start;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .top-bar .contact-item {
        font-size: 0.8rem;
    }
    
    .top-bar .social-links-top a {
        width: 28px;
        height: 28px;
    }
    
    .top-bar .social-links-top a i {
        font-size: 0.9rem;
    }
}

/* Service Hero Section */
.service-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

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

.service-hero .hero-content {
    padding: 40px 0;
    color: #333;
}

.service-hero .hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: white;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-hero .hero-heading {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.2;
    text-shadow: none;
}

.service-hero .hero-description {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 600px;
}

.service-hero .hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.service-hero .hero-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.service-hero .hero-buttons .btn-primary {
    background: var(--primary-color);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-hero .hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.service-hero .hero-buttons .btn-outline-light {
    border: 2px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    backdrop-filter: blur(5px);
}

.service-hero .hero-buttons .btn-outline-light:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

.service-hero .hero-image-container {
    position: relative;
    padding: 20px;
}

.service-hero .hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 5px solid rgba(0, 0, 0, 0.05);
}

.service-hero .hero-image:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Responsive Styles for Hero Section */
@media (max-width: 1200px) {
    .service-hero .hero-heading {
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    .service-hero {
        padding: 120px 0 80px;
        min-height: auto;
    }
    
    .service-hero .hero-heading {
        font-size: 3rem;
    }
    
    .service-hero .hero-description {
        font-size: 1.2rem;
    }
    
    .service-hero .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-hero .hero-image-container {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .service-hero {
        padding: 100px 0 60px;
    }
    
    .service-hero .hero-heading {
        font-size: 2.5rem;
    }
    
    .service-hero .hero-description {
        font-size: 1.1rem;
    }
    
    .service-hero .hero-buttons .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .service-hero .hero-image {
        border-width: 3px;
    }
}
