/* ========================================
   MORDISH MULTI SERVICES - COMPLETE CSS
   Theme: Dark with Cyan Gradients (#00d4ff)
   ======================================== */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #1a1a2e;
    color: #ffffff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

:target {
    scroll-margin-top: 80px;
}

/* Custom Luxury Scrollbar with Gradient */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0f0f1e;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00d4ff 0%, #00a8cc 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00a8cc 0%, #00d4ff 100%);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

* {
    scrollbar-width: thin;
    scrollbar-color: #00d4ff #0f0f1e;
}

/* Top Header */
.top-header {
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-info-top span {
    color: #333333;
    margin-right: 20px;
}

.contact-info-top i {
    color: #00d4ff;
    margin-right: 8px;
}

.top-header-text {
    color: #333333;
}

.top-header-text i {
    color: #00d4ff;
    margin-right: 8px;
}

/* Navbar */
#mainNav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-link {
    color: #333333 !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff 0%, #00a8cc 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #00d4ff !important;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.navbar-toggler {
    border-color: #00d4ff;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 212, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* Hero Section with Gradients */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 50px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(0, 212, 255, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(0, 212, 255, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(0, 212, 255, 0.3), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(0, 212, 255, 0.3), transparent);
    background-size: 200% 200%;
    animation: particleMove 20s ease-in-out infinite;
}

@keyframes particleMove {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

.hero-content-text {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #ffffff;
}

.text-cyan {
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* GRADIENT BUTTONS - Main Style */
.btn-cyan {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #ffffff !important;
    border: none;
    padding: 12px 40px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    border-radius: 5px;
}

.btn-cyan:hover {
    background: linear-gradient(135deg, #00a8cc 0%, #00d4ff 100%);
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.5);
}

.btn-outline-cyan {
    background: transparent;
    border: 2px solid #00d4ff;
    color: #00d4ff !important;
    padding: 12px 35px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.btn-outline-cyan:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #ffffff !important;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

.btn-cyan-modern {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #ffffff !important;
    border: none;
    padding: 15px 40px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-cyan-modern:hover {
    background: linear-gradient(135deg, #00a8cc 0%, #00d4ff 100%);
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.5);
}

/* Hero Stats with Gradient */
.hero-stats {
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 168, 204, 0.05) 100%);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 168, 204, 0.1) 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.stat-item p {
    margin: 0;
    color: #b0b0b0;
    font-size: 14px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down-btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid #00d4ff;
    border-radius: 50%;
    color: #00d4ff;
    text-align: center;
    line-height: 36px;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.scroll-down-btn:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #ffffff;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Hexagons with Gradient Hover */
.hexagon-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hexagon {
    position: absolute;
    width: 180px;
    height: 200px;
    background: rgba(0, 212, 255, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.hexagon:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 168, 204, 0.2) 100%);
    border-color: #00d4ff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.hex-content {
    text-align: center;
    color: #ffffff;
}

.hex-content i {
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 10px;
    display: block;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.hex-content span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.hex-1 { top: 0; left: 50%; transform: translateX(-50%); }
.hex-2 { top: 15%; left: 20%; }
.hex-3 { top: 15%; right: 20%; }
.hex-4 { top: 40%; left: 5%; }
.hex-5 { top: 40%; right: 5%; }
.hex-6 { bottom: 20%; left: 20%; }
.hex-7 { bottom: 20%; right: 20%; }
.hex-8 { bottom: 0; left: 50%; transform: translateX(-50%); }


/* Section Titles with Gradient Underline */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff 0%, #00a8cc 100%);
    margin: 0 auto 20px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.section-subtitle {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-top: 10px;
}

.section-label,
.section-label-center {
    color: #00d4ff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.section-title-left {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.3;
}

/* Services Section with Gradient Icons */
.services-section {
    background: #16213e;
    padding: 100px 0;
}

.service-box {
    background: #1a1a2e;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.service-box:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.service-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 168, 204, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #00d4ff;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 212, 255, 0.2);
}

.service-box:hover .service-icon-box {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #ffffff;
    transform: rotateY(360deg);
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.service-box h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-box p {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 14px;
}

/* About Sections */
.about-section {
    background: #1a1a2e;
    padding: 100px 0;
}

.about-section-alt {
    background: #16213e;
    padding: 100px 0;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 212, 255, 0.1);
}

.about-image:hover {
    border-color: #00d4ff;
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.9) 0%, rgba(0, 168, 204, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.overlay-icon {
    font-size: 4rem;
    color: #ffffff;
}

.floating-badge {
    position: absolute;
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    animation: float 3s ease-in-out infinite;
}

.badge-1 {
    top: 20px;
    right: -20px;
}

.badge-2 {
    bottom: 20px;
    left: -20px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #ffffff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.5);
}

.experience-badge h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.experience-badge p {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
}

.about-content {
    padding: 20px;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content p,
.about-text {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b0b0b0;
}

.feature-item i {
    color: #00d4ff;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.progress-stats {
    margin-top: 30px;
}

.stat-progress {
    margin-bottom: 25px;
}

.stat-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.service-list {
    margin-top: 30px;
}

.service-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #00d4ff;
    transition: all 0.3s ease;
}

.service-list-item:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 168, 204, 0.1) 100%);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.service-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.service-info h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.service-info p {
    color: #b0b0b0;
    margin: 0;
    font-size: 14px;
}


/* Skills Section with Gradient Progress Bars */
.skills-section {
    background: #16213e;
    padding: 100px 0;
}

.skills-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 212, 255, 0.1);
}

.skills-image:hover {
    border-color: #00d4ff;
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.3);
}

.skills-image img {
    width: 100%;
    height: auto;
}

.skill-item {
    margin-bottom: 30px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.progress-bar-custom {
    width: 100%;
    height: 8px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff 0%, #00a8cc 100%);
    width: 0;
    transition: width 1.5s ease;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Portfolio Section with Gradient Overlay */
.portfolio-section {
    background: #1a1a2e;
    padding: 100px 0;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    height: 350px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    border-color: #00d4ff;
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.95) 0%, rgba(0, 168, 204, 0.95) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-content {
    text-align: center;
    padding: 20px;
}

.portfolio-overlay h5 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.portfolio-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Testimonials Section with Gradient Slider */
.testimonials-section {
    background: #16213e;
    padding: 100px 0;
}

.testimonial-box-modern {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-box-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #00a8cc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-box-modern:hover::before {
    transform: scaleX(1);
}

.testimonial-box-modern:hover {
    border-color: #00d4ff;
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.client-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #00d4ff;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info {
    flex: 1;
}

.stars i {
    color: #ffc107;
    font-size: 0.9rem;
    margin: 0 2px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #b0b0b0;
    font-style: italic;
    margin: 20px 0 0;
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #00d4ff 0%, #00a8cc 100%);
}

.client-name {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.client-position {
    color: #00d4ff;
    margin: 5px 0;
    font-size: 13px;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(0, 212, 255, 0.1);
}

/* Testimonial Slider Controls with Gradient */
#testimonialSlider {
    padding: 20px 0;
}

#testimonialSlider .carousel-indicators {
    bottom: -50px;
}

#testimonialSlider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 212, 255, 0.3);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

#testimonialSlider .carousel-indicators button.active {
    background: linear-gradient(90deg, #00d4ff 0%, #00a8cc 100%);
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

#testimonialSlider .carousel-control-prev,
#testimonialSlider .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
}

#testimonialSlider .carousel-control-prev {
    left: -60px;
}

#testimonialSlider .carousel-control-next {
    right: -60px;
}

#testimonialSlider .carousel-control-prev:hover,
#testimonialSlider .carousel-control-next:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

#testimonialSlider .carousel-control-prev-icon,
#testimonialSlider .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 100%;
}

#testimonialSlider .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300d4ff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

#testimonialSlider .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300d4ff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#testimonialSlider .carousel-item {
    transition: transform 0.6s ease-in-out;
}


/* Contact Section with Gradient Cards */
.contact-section {
    background: #1a1a2e;
    padding: 100px 0;
}

.contact-card {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #00a8cc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 168, 204, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #00d4ff;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 212, 255, 0.2);
}

.contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #ffffff;
    transform: rotateY(360deg);
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.contact-card h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-card p {
    color: #b0b0b0;
    margin: 0;
    line-height: 1.8;
}

.contact-card a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* Contact Form with Gradient */
.contact-form-wrapper {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-form-wrapper:hover {
    border-color: #00d4ff;
    box-shadow: 0 25px 70px rgba(0, 212, 255, 0.2);
}

.contact-form-info {
    padding-right: 30px;
}

.contact-form-info h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-form-info p {
    color: #b0b0b0;
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-features {
    margin-bottom: 30px;
}

.contact-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #b0b0b0;
}

.contact-feature-item i {
    color: #00d4ff;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.contact-form-modern {
    padding: 20px 0;
}

.form-group-modern {
    position: relative;
}

.form-group-modern i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #00d4ff;
    font-size: 1.1rem;
    z-index: 1;
}

.form-group-modern textarea + i {
    top: 20px;
    transform: none;
}

.form-control-modern {
    width: 100%;
    background: rgba(0, 212, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.2);
    color: #ffffff;
    padding: 15px 20px 15px 55px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.form-control-modern:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.15), 0 0 20px rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.08);
    outline: none;
}

.form-control-modern::placeholder {
    color: #7f8c8d;
}

textarea.form-control-modern {
    resize: none;
    padding-top: 15px;
}

/* Map Container with Gradient Border */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 212, 255, 0.2);
}

.map-container:hover {
    border-color: #00d4ff;
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.3);
}

/* Footer with Gradient Elements */
.footer-dark {
    background: #0f0f1e;
    color: #b0b0b0;
    padding: 60px 0 20px;
}

.footer-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.footer-text {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 14px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-links li a:hover {
    color: #00d4ff;
    padding-left: 5px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.newsletter-form-dark .input-group-dark {
    display: flex;
    gap: 10px;
}

.newsletter-form-dark .form-control-dark {
    background: #16213e;
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: #ffffff;
    padding: 12px 15px;
    border-radius: 5px;
    flex: 1;
}

.newsletter-form-dark .form-control-dark:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    outline: none;
}

.newsletter-form-dark .btn-cyan {
    padding: 12px 20px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.newsletter-form-dark .btn-cyan:hover {
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

.footer-contact-info {
    margin-top: 20px;
}

.footer-contact-info p {
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-contact-info i {
    color: #00d4ff;
    margin-right: 8px;
}

.footer-divider {
    border-color: rgba(0, 212, 255, 0.1);
    margin: 40px 0 20px;
}

.copyright-text {
    color: #7f8c8d;
    margin: 0;
    font-size: 14px;
}

/* Back to Top Button with Gradient */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #00a8cc 0%, #00d4ff 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hexagon-container {
        height: 500px;
    }
    
    .floating-badge {
        font-size: 12px;
        padding: 10px 15px;
    }
    
    .badge-1, .badge-2 {
        position: static;
        margin: 10px 0;
    }
    
    .contact-form-info {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .contact-form-wrapper {
        padding: 40px 30px;
    }
    
    #testimonialSlider .carousel-control-prev {
        left: -30px;
    }
    
    #testimonialSlider .carousel-control-next {
        right: -30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hexagon-container {
        height: 400px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        position: static;
        margin-top: 20px;
    }
    
    .top-header {
        text-align: center;
    }
    
    .contact-info-top span {
        display: block;
        margin: 5px 0;
    }
    
    .top-header-text {
        margin-top: 10px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-form-info h3 {
        font-size: 1.5rem;
    }
    
    #testimonialSlider .carousel-control-prev,
    #testimonialSlider .carousel-control-next {
        display: none;
    }
    
    #testimonialSlider .carousel-indicators {
        bottom: -40px;
    }
}

/* ========================================
   END OF CSS - ALL GRADIENTS APPLIED
   ======================================== */
