/* Gruvbox Color Palette Reference
 * 
 * Dark Mode Colors
 * ---------------
 * Background Colors:
 * Dark0_hard:     #1d2021   Darkest background
 * Dark0:          #282828   Default background
 * Dark0_soft:     #32302f   Lighter background
 * Dark1:          #3c3836   Lighter background
 * Dark2:          #504945   Selection background
 * Dark3:          #665c54   Comments, invisibles
 * Dark4:          #7c6f64   Dark foreground
 * 
 * Foreground Colors:
 * Light0_hard:    #f9f5d7   Lightest foreground
 * Light0:         #fbf1c7   Default foreground
 * Light0_soft:    #f2e5bc   Darker foreground
 * Light1:         #ebdbb2   Darker foreground
 * Light2:         #d5c4a1   Darker foreground
 * Light3:         #bdae93   Darker foreground
 * Light4:         #a89984   Darker foreground
 * 
 * Bright Colors:
 * Bright Red:     #fb4934   Red
 * Bright Green:   #b8bb26   Green
 * Bright Yellow:  #fabd2f   Yellow
 * Bright Blue:    #83a598   Blue
 * Bright Purple:  #d3869b   Purple
 * Bright Aqua:    #8ec07c   Aqua
 * Bright Orange:  #fe8019   Orange
 * 
 * Neutral Colors:
 * Red:            #cc241d   Neutral red
 * Green:          #98971a   Neutral green
 * Yellow:         #d79921   Neutral yellow
 * Blue:           #458588   Neutral blue
 * Purple:         #b16286   Neutral purple
 * Aqua:           #689d6a   Neutral aqua
 * Orange:         #d65d0e   Neutral orange
 * Gray:           #928374   Gray/comments
 */
/* Global Style Start */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');

:root {
    /* Font */
    --primary_font: "JetBrains Mono", "Fira Code", "Consolas", "Monaco", monospace;
    /* Color */
    --primary_color: #a89984;
    --secondary_color: #504945;
    --accent_color: #458588;
    --text_color: #f9f5d7;
    --default_color: #32302f;
    --color_one: #458588;
    --color_two: #a89984;
}

/* selection */
::selection {
    color: var(--default_color);
    background: var(--accent_color);
}
/* selection */

/* Preloader End */
.preloader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--default_color);
    z-index: 9999;
    transition: opacity 0.5s ease;
    opacity: 1;
}
.preloader.hide {
    opacity: 0;
    pointer-events: none;
}
.preloader img {
    max-width: 200px;
    max-height: 50px;
}
/* Preloader End */

/* DriveGo Logo Styles */
.drivego-logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 32px;
    color: var(--primary_color);
    text-decoration: none;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    padding: 5px 10px;
    background: linear-gradient(
        45deg,
        var(--accent-yellow, #a89984) 0%,
        var(--accent-blue, #7c6f64) 50%,
        var(--accent-purple, #f9f5d7) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.drivego-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--accent-yellow, #a89984),
        var(--accent-blue, #7c6f64),
        var(--accent-purple, #f9f5d7)
    );
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.drivego-logo:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.preloader .drivego-logo {
    font-size: 48px;
}
/* DriveGo Logo Styles End */

/* Route Cards Styles */
.route-card {
    background: #3c3836;
    border: 1px solid var(--secondary_color);
    border-radius: 16px;
    padding: 18px 22px 16px 22px;
    margin: 0 !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    min-width: 360px;
    max-width: 450px;
    width: 100% !important;
    height: 180px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;  
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.route-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-color: var(--accent_color);
    background: linear-gradient(45deg, #83a598, #458588, #689d6a, #b16286);
    background-size: 300% 300%;
    animation: gradientShift 3s ease infinite;
    z-index: 10;
}

.route-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent_color) 0%, var(--color_one) 50%, var(--primary_color) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.route-card:hover::before {
    transform: scaleX(1);
}

.route-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 10px;
}

.route-icon {
    font-size: 24px;
    color: var(--primary_color);
    margin-top: 2px;
    transition: all 0.3s ease;
}

.route-card:hover .route-icon {
    color: var(--accent_color);
    transform: scale(1.1);
}

.route-title-section {
    flex: 1;
}

.route-name {
    color: var(--text_color);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.route-card:hover .route-name {
    color: #1d2021;
}

.route-subtitle {
    color: var(--primary_color);
    font-size: 12px;
    margin: 0 0 2px 0 !important;
    line-height: 1.3;
    font-weight: 400;
    opacity: 0.9;
}

.route-stats-bottom {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 4px;
    align-items: center;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--primary_color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.difficulty-stat {
    background: rgba(168, 153, 132, 0.1);
    padding: 3px 8px;
    border-radius: 12px;
    border: 1px solid rgba(168, 153, 132, 0.2);
}

.route-card:hover .difficulty-stat {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 0, 0, 0.4);
    color: #282828;
}

.route-card:hover .stat-item {
    color: #282828;
}

/* Route Slider Styling */
.route-slider {
    overflow: visible !important;
    padding: 20px 0;
}

.route-slider .slick-list {
    overflow: visible !important;
}

.route-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

.route-slider .slick-slide {
    height: inherit !important;
    overflow: visible !important;
    padding: 0 15px;
}

.route-slider .slick-dots {
    display: none !important;
}

.route-slider .slick-arrow {
    z-index: 100;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
/* Route Cards Styles End */

/* Filter and Form Styles */
.filter-section {
    background: rgba(60, 56, 54, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
    border: 1px solid var(--secondary_color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.filter-row {
    display: flex;
    gap: 20px;
    align-items: end;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    color: var(--primary_color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.filter-select, .filter-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg_one);
    border: 2px solid var(--secondary_color);
    border-radius: 12px;
    color: var(--text_color);
    font-size: 14px;
    transition: all 0.3s ease;
}

.filter-select:focus, .filter-input:focus {
    outline: none;
    border-color: var(--accent_color);
    box-shadow: 0 0 0 3px rgba(131, 165, 152, 0.1);
}

.btn-filter {
    background: linear-gradient(135deg, var(--accent_color), var(--color_one));
    border: none;
    color: var(--bg_one);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 14px;
    min-width: 120px;
}

.btn-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(131, 165, 152, 0.3);
    color: var(--bg_one);
}

.difficulty-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.difficulty-btn {
    padding: 8px 16px;
    border: 2px solid var(--secondary_color);
    background: transparent;
    color: var(--primary_color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.difficulty-btn:hover, .difficulty-btn.active {
    background: var(--accent_color);
    border-color: var(--accent_color);
    color: var(--bg_one);
}

.form-section {
    background: rgba(60, 56, 54, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--secondary_color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-section h3 {
    color: var(--accent_color);
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    color: var(--primary_color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg_one);
    border: 2px solid var(--secondary_color);
    border-radius: 12px;
    color: var(--text_color);
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent_color);
    box-shadow: 0 0 0 3px rgba(131, 165, 152, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.photo-upload {
    border: 2px dashed var(--secondary_color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    background: var(--bg_one);
    transition: all 0.3s ease;
    cursor: pointer;
}

.photo-upload:hover {
    border-color: var(--accent_color);
    background: rgba(131, 165, 152, 0.05);
}

.photo-upload i {
    font-size: 48px;
    color: var(--primary_color);
    margin-bottom: 15px;
}

.photo-upload p {
    color: var(--primary_color);
    margin: 0;
    font-size: 16px;
}

.photo-upload small {
    color: var(--secondary_color);
    font-size: 12px;
}

#file-input {
    display: none;
}

.btn-submit {
    background: linear-gradient(135deg, var(--accent_color), var(--color_one));
    border: none;
    color: var(--bg_one);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 16px;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(131, 165, 152, 0.3);
    color: var(--bg_one);
}
/* Filter and Form Styles End */

/* New Hero Banner Styles */
.hero-banner {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: rgba(var(--bg-rgb), 0.1);
    backdrop-filter: blur(5px);
    padding: 100px 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(131, 165, 152, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(131, 165, 152, 0.3);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-badge i {
    color: var(--accent_color);
    font-size: 16px;
}

.typing-text {
    color: var(--primary_color);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title-wrapper {
    margin-bottom: 30px;
}

.hero-main-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin: 0;
    overflow: hidden;
}

.title-line {
    display: block;
    transform: translateY(100px);
    opacity: 0;
}

.title-line.animate-slide-up {
    animation: slideUp 1s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.3s; color: var(--primary_color); }
.title-line:nth-child(2) { 
    animation-delay: 0.5s; 
    background: linear-gradient(45deg, var(--accent_color), var(--color_one));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}
.title-line:nth-child(3) { 
    animation-delay: 0.7s; 
    font-size: 0.6em; 
    color: var(--primary_color); 
    opacity: 0.9;
    font-weight: 400;
}

.hero-description {
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-description p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--primary_color);
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 500px;
}

.stat-item {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease both;
}

.stat-item:nth-child(1) { animation-delay: 1.1s; }
.stat-item:nth-child(2) { animation-delay: 1.2s; }
.stat-item:nth-child(3) { animation-delay: 1.3s; }

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent_color);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--primary_color);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 0;
    animation: fadeInUp 1s ease both;
}

.hero-btn.primary {
    background: linear-gradient(135deg, var(--accent_color), var(--color_one));
    color: var(--default_color);
    animation-delay: 1.4s;
}

.hero-btn.secondary {
    background: transparent;
    color: var(--accent_color);
    border-color: var(--accent_color);
    animation-delay: 1.5s;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(131, 165, 152, 0.3);
}

.hero-btn.secondary:hover {
    background: var(--accent_color);
    color: var(--default_color);
}

.hero-visual {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    z-index: 1;
}

.floating-cards {
    position: relative;
    width: 300px;
    height: 400px;
}

.route-preview-card {
    position: absolute;
    background: rgba(60, 56, 54, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(131, 165, 152, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text_color);
    animation: float 6s ease-in-out infinite;
}

.route-preview-card i {
    font-size: 24px;
    color: var(--accent_color);
}

.card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 150px;
    right: 0;
    animation-delay: 2s;
}

.card-3 {
    bottom: 0;
    left: 50px;
    animation-delay: 4s;
}

.hero-gradient-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(131, 165, 152, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

/* Community Showcase Styles */
.community-showcase {
    padding: 100px 0;
    background: transparent;
}

.section-header {
    margin-bottom: 60px;
}

.animate-title {
    font-size: 3rem;
    color: var(--primary_color);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s both;
}

.animate-subtitle {
    font-size: 1.2rem;
    color: var(--primary_color);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s both;
}

.highlight-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.highlight-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
}

.highlight-card.animate-card {
    animation: cardSlideUp 1s ease forwards;
}

.highlight-card.featured {
    grid-row: span 2;
}

.card-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 250px;
    overflow: hidden;
}

.highlight-card.featured .card-image {
    min-height: 100%;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px 20px 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.route-info h4 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.route-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.route-stats {
    display: flex;
    gap: 15px;
}

.route-stats span {
    color: var(--accent_color);
    font-size: 0.85rem;
    font-weight: 500;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent_color);
    color: var(--default_color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.highlight-card:hover .card-image img {
    transform: scale(1.1);
}

.highlight-card:hover .card-overlay {
    transform: translateY(0);
    opacity: 1;
}

.community-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.community-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 0;
    animation: fadeInUp 1s ease both;
}

.community-btn.primary {
    background: linear-gradient(135deg, var(--accent_color), var(--color_one));
    color: var(--default_color);
    animation-delay: 0.6s;
}

.community-btn.secondary {
    background: transparent;
    color: var(--accent_color);
    border-color: var(--accent_color);
    animation-delay: 0.8s;
}

.community-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(131, 165, 152, 0.3);
}

.community-btn.secondary:hover {
    background: var(--accent_color);
    color: var(--default_color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .highlight-card.featured {
        grid-row: span 1;
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 80vh;
        padding: 80px 0;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .highlight-card.featured {
        grid-column: span 1;
    }
    
    .community-actions {
        flex-direction: column;
        align-items: center;
    }
}

html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
    font-family: var(--primary_font);
    background: transparent;
    position: relative;
}


.d2c_service_card,
.d2c_services_wrapper {
    position: relative;
    z-index: 1;
}

a {
    text-decoration: none;
    font-family: var(--primary_font);
}
img {
    object-fit: cover;
}
ul {
    list-style-type: none;
    padding-left: 0px;
}
h1,h2,h3,h4,h5,h6,p {
    font-family: var(--primary_font);
}
h2 {
    color: var(--primary_color);
    font-size: 45px;
    font-weight: 600;
    text-transform: capitalize;
}
h5 {
    color: var(--primary_color);
    font-size: 25px;
    font-weight: 500;
    text-transform: capitalize;
}
h6 {
    color: var(--primary_color);
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
}
p {
    color: var(--text_color);
    font-size: 17px;
    font-weight: 400;
}

/* btn start */
.btn {
    color: var(--secondary_color);
    font-size: 17px;
    font-family: var(--primary_font);
    font-weight: 600;
    text-transform: capitalize;
    padding: 10px 40px 9px;
    border-radius: 4px;
    border: 2px solid var(--primary_color);
    background: var(--primary_color);
    transition: 0.4s all ease;
    position: relative;
    z-index: 2;
}
.btn:hover {
    color: var(--secondary_color);
    background: var(--accent_color);
    border: 2px solid var(--accent_color);
    transition: 0.4s all ease;
}
.btn:active {
    color: var(--secondary_color) !important;
    background: var(--accent_color) !important;
    border: 2px solid var(--accent_color) !important;
    transition: 0.4s all ease;
}
.secondary_btn {
    color: var(--secondary_color);
    background: var(--accent_color);
    border: 2px solid var(--accent_color);
    transition: 0.4s all ease;
    margin-left: 20px;
    position: relative;
    z-index: 2;
}
.secondary_btn:hover {
    color: var(--secondary_color);
    background: var(--primary_color);
    border: 2px solid var(--primary_color);
    transition: 0.4s all ease;
}
.secondaray_btn:active {
    color: var(--secondary_color) !important;
    background: var(--primary_color) !important;
    border: 2px solid var(--primary_color) !important;
    transition: 0.4s all ease;
}

.neon-sign {
    color: #d4d4d4;
    text-shadow:
        0 0 5px #d4d4d4,
        0 0 10px #d4d4d4,
        0 0 20px #d4d4d4,
        0 0 40px #d4d4d4,
        0 0 80px #d4d4d4,
        0 0 160px #d4d4d4;
    font-weight: 100;
    letter-spacing: 2px;
    animation: neon-flicker 2s infinite;
}

@keyframes neon-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 90% {
        opacity: 1;
        text-shadow:
            0 0 5px #d4d4d4,
            0 0 10px #d4d4d4,
            0 0 20px #d4d4d4,
            0 0 40px #d4d4d4,
            0 0 80px #d4d4d4,
            0 0 160px #d4d4d4;
    }
    20%, 22%, 24%, 55% {
        opacity: 0.5;
        text-shadow:
            0 0 2px #d4d4d4,
            0 0 4px #d4d4d4,
            0 0 8px #d4d4d4,
            0 0 16px #d4d4d4;
    }
}


/* Navbar Start */
.d2c_navbar {
    background: var(--secondary_color);
}
.navbar-brand {
    max-width: 106px;
    padding: 0px 0px 4px;
}
.navbar {
    padding: 8px 0px;
}
.d2c_navbar .navbar-nav .nav-item {
    margin: 0px 18px;
    display: flex;
    align-items: center;
}
.d2c_navbar .navbar-nav .nav-item:last-child {
    margin-right: 0;
}
.d2c_navbar .navbar-nav .nav-link {
    color: var(--text_color);
    font-family: var(--primary_font);
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 0px 0px;
    background: transparent;
    transition: .4s all ease;
    border-radius: 4px;
}
.d2c_navbar .navbar-nav .nav-link:hover {
    color: var(--accent_color);
    transition: .4s all ease;
}
.d2c_navbar .navbar-nav .nav-link.active  {
    color: var(--accent_color);
}
.d2c_navbar .navbar-nav .nav-link.active  {
    color: var(--accent_color);
    transition: .4s all ease;
}
/* Nav Item Show From Side */
body .d2c_mobile_view {
    position: fixed;
    height: 100vh;
    inset: 0;
    opacity: 1;
}
.navbar.d2c_mobile_view_body .navbar-nav {
    width: 100%;
}
.navbar.d2c_mobile_view_body .nav-item {
    margin-right: 0;
}
.d2c_mobile_view .show_width {
    max-width: 14.625rem;
    width: 100%;
    height: 100vh;
    position: absolute;
    right: -380px;
    top: 0;
    transition: 0.5s;
    padding: 20px 30px;
    background-color: var(--secondary_color);
    overflow: scroll;
    z-index: 9999;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}

.d2c_mobile_view.show .show_width {
    right: 0;
    transition: 0.5s;
}
.hide_width {
    max-width: 15.625rem;
    width: 100%;
    height: 100vh;
    position: absolute;
    right: -380px !important;
    top: 0;
    transition: 0.5s !important;
    padding: 20px 15px;
    background-color: var(--default_color);
    overflow: scroll;
    z-index: 9999;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler {
    border: 1px solid var(--primary_color);
    color: var(--primary_color);
    padding: 7px 10px;
    width: 44px;
    margin-left: 0px;
    transition: .4s all ease;
}
.navbar-toggler:hover {
    background: transparent;
    color: var(--primary_color);
    transition: .4s all ease;
}
.d2c_cross_btn {
    width: auto;
    border: none;
}
@media only screen and (min-width:991px) {
    body .d2c_mobile_view {
        opacity: 0;
        transition: .5s;
    }
}
/* Navbar End */

/* Home Page Style Start */
/* Subtle movement effect for hero/about images and boxes */
.d2c_hero_img_wrapper,
.d2c_about_img_wrapper {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
    z-index: 1;
}


/* Smooth WOW animation easing to avoid jumpy transitions */
.wow.animated, .animated.wow {
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), opacity 700ms ease-out !important;
    will-change: transform, opacity;
}

/* Ensure body and html can expand properly */
html, body {
    min-height: 100vh;
    min-width: 100vw;
    overflow-x: hidden;
}

/* Hero Section Start */
.d2c_hero_wrapper {
    padding: 150px 0px;
    position: relative;
    overflow: hidden;
}

/* Enhanced Hero Title with Glow Effect */
h1 {
    font-size: 62px;
    font-weight: 700;
    color: var(--primary_color);
    margin-bottom: 14px;
    position: relative;
    text-shadow: 0 0 20px rgba(131, 165, 152, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { 
        text-shadow: 0 0 20px rgba(131, 165, 152, 0.3), 0 0 40px rgba(131, 165, 152, 0.1);
    }
    100% { 
        text-shadow: 0 0 30px rgba(131, 165, 152, 0.5), 0 0 60px rgba(131, 165, 152, 0.2);
    }
}

h1 span {
    color: var(--accent_color);
    background: linear-gradient(45deg, var(--accent_color), var(--color_one), var(--accent_color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.d2c_hero_wrapper h6 {
    position: relative;
    z-index: 0;
    color: var(--primary_color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0.9;
}

.d2c_hero_wrapper p {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--primary_color);
    opacity: 0.95;
}

.d2c_hero_wrapper h5 {
    margin-bottom: 30px;
    color: var(--accent_color);
    font-weight: 600;
}

/* Enhanced Hero Image with Dynamic Effects */
.d2c_hero_img_wrapper {
    width: 548px;
    height: 561px;
    background: linear-gradient(135deg, var(--accent_color), var(--color_one));
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(131, 165, 152, 0.2);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.d2c_hero_img_wrapper:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5),
                0 0 60px rgba(131, 165, 152, 0.3);
}

.d2c_hero_img_wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
                                rgba(131, 165, 152, 0.1), 
                                rgba(168, 153, 132, 0.1),
                                rgba(184, 187, 38, 0.1));
    background-size: 300% 300%;
    animation: backgroundShimmer 6s ease infinite;
    opacity: 0.5;
}

@keyframes backgroundShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.d2c_hero_img_wrapper::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(45deg, var(--accent_color), var(--color_one), var(--accent_color));
    background-size: 300% 300%;
    border-radius: 18px;
    z-index: -1;
    animation: borderGlow 4s ease infinite;
}

@keyframes borderGlow {
    0% { 
        background-position: 0% 50%;
        opacity: 0.7;
    }
    50% { 
        background-position: 100% 50%;
        opacity: 1;
    }
    100% { 
        background-position: 0% 50%;
        opacity: 0.7;
    }
}

.d2c_hero_wrapper .d2c_img_wrapper {
    width: 548px;
    height: 561px;
    position: absolute;
    top: 35px;
    right: 35px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.d2c_hero_wrapper .d2c_img_wrapper:hover {
    transform: translate(5px, -5px);
}

/* Floating Animation for Hero Elements */
@keyframes heroFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.d2c_hero_wrapper .wow {
    animation-duration: 1s;
    animation-fill-mode: both;
}

/* Enhanced Button Styling for Hero */
.d2c_hero_wrapper .d2c_primary_btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent_color), var(--color_one));
    background-size: 200% 200%;
    animation: buttonGradient 3s ease infinite;
    box-shadow: 0 8px 25px rgba(131, 165, 152, 0.3);
    transition: all 0.3s ease;
}

.d2c_hero_wrapper .d2c_primary_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(131, 165, 152, 0.4);
}

@keyframes buttonGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hero Section End */

/* About Section Start */
.d2c_about_wrapper {
    padding: 150px 0px 0px;
    min-height: unset;
}
.d2c_about_img_wrapper {
    width: 586px;
    height: 610px;
    background: var(--primary_color);
    border-radius: 8px;
    position: relative;
}
.d2c_about_wrapper .d2c_img_wrapper {
    width: 586px;
    height: 610px;
    position: absolute;
    top: 35px;
    left: 35px;
}
.d2c_about_wrapper h2 {
    margin-bottom: 24px;
}
.d2c_about_wrapper p {
    margin-bottom: 20px;
}
.d2c_about_wrapper h5 {
    margin-bottom: 20px;
}
.d2c_about_content {
    margin-bottom: 50px !important;
}
/* About Section End */

/* Service Section Start */
.d2c_services_wrapper {
    background: transparent;
    padding: 120px 0px 140px;
}
.d2c_services_wrapper h2 {

    margin-bottom: 14px;
}
.d2c_services_wrapper p {
    margin-bottom: 50px;
}
.d2c_service_card {
    height: 100%;
    text-align: start;
    background: var(--accent_color);
    border-radius: 8px;
    padding: 40px 30px;
    border: 1px solid var(--accent_color);
    transition: 0.4s all ease;
}
.d2c_service_card:hover {
    background: var(--primary_color);
    transition: 0.4s all ease;
}
.d2c_service_card:hover .d2c_img_wrapper img {
    filter: grayscale(100%);
    transition: 0.4s all ease;
}
.d2c_service_card .d2c_img_wrapper img {
    filter: grayscale(0%);
    transition: 0.4s all ease;
}
.d2c_service_card .d2c_img_wrapper {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background: var(--secondary_color);
    margin-bottom: 32px;
    transition: 0.4s all ease;
}
.d2c_service_card h5 {
    color: var(--secondary_color);
    margin-bottom: 18px;
}
.d2c_services_wrapper .btn {
    margin-top: 50px;
}
/* Service Section End */

/* Project Section Start */
.d2c_project_wrapper {
    padding: 150px 0px;
}
.d2c_project_wrapper h2 {
    margin-bottom: 14px;
}
.d2c_project_wrapper .d2c_img_wrapper {
    width: 100%;
    height: 340px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 27px #a89984;
}
.d2c_project_wrapper .d2c_img_wrapper img {
    transform: scale(1.0);
    transition: 0.4s all ease;
}
.d2c_project_wrapper .d2c_img_wrapper:hover img {
    transform: scale(1.1);
    transition: 0.4s all ease;
}
.d2c_project_wrapper p {
    margin-bottom: 50px;
}
.d2c_project_wrapper .btn {
    margin-top: 60px;
}
/* Project Section End */

/* Testimonial Section Start */
.d2c_testimonial_wrapper {
    overflow-x: hidden;
    padding: 10px 0px 140px;
}
.d2c_testimonial_wrapper h2 {
    margin-bottom: 70px;
}
.d2c_testimonial_wrapper .d2c_card {
    height: 100%;
    padding: 40px 30px;
    background-color: var(--accent_color);
    border-radius: 8px;
}
.d2c_testimonial_wrapper .d2c_img_wrapper {
    width: 77px;
    height: 77px;
    border-radius: 100px;
}
.d2c_testimonial_wrapper .d2c_img_wrapper img {
    border-radius: 100px;
}
.d2c_customer_info_wrapper {
    margin-bottom: 40px;
}
.d2c_customer_info {
    padding-left: 20px;
}
.d2c_customer_info p span {
    font-weight: 600;
}
.d2c_testimonial_content {
    color: var(--gray-900, #32302f); 
}
.slick-list,
.slick-track {
    display: flex !important;
    align-items: stretch !important;
    gap: 32px !important; /* consistent space between slides */
}

.slick-slide {
    padding: 0 !important;
    height: auto !important;
    display: flex !important;
    align-items: stretch !important;
}

.slick-track {
    height: 100%;
}
.slick-prev {
    width: 30px;
    height: 30px;
    background: var(--primary_color);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: 2px solid var(--primary_color);
    z-index: 1;
    top: 105%;
    left: 50%;
    margin-left: -70px;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    overflow: hidden;
    animation: floatOne 4.2s ease-in-out infinite;
}
.slick-prev:hover {
    transform: translateY(-3px);
    animation-play-state: paused;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-width: 2px;
    border-style: solid;
    border-color: #458588;
    background: var(--accent_color);
}
.slick-prev:focus {
    transform: translateY(-3px);
    animation-play-state: paused;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-width: 2px;
    border-style: solid;
    border-color: #458588;
    background: var(--accent_color);
    outline: none;
}
.slick-next {
    width: 30px;
    height: 30px;
    background: var(--primary_color);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: 2px solid var(--primary_color);
    top: 105%;
    left: 50%;
    margin-left: 50px;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    overflow: hidden;
    animation: floatTwo 3.8s ease-in-out infinite;
}
.slick-next:hover {
    transform: translateY(-3px);
    animation-play-state: paused;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-width: 2px;
    border-style: solid;
    border-color: #458588;
    background: var(--accent_color);
}
.slick-next:focus {
    transform: translateY(-3px);
    animation-play-state: paused;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-width: 2px;
    border-style: solid;
    border-color: #458588;
    background: var(--accent_color);
    outline: none;
}
.slick-prev:before {
    content: "\f053";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--default_color) !important;
    opacity: 1;
    font-size: 15px;
}
.slick-next:before {
    content: "\f054";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--default_color) !important;
    opacity: 1;
    font-size: 15px;
}

/* Glowing border effect for slick arrows */
.slick-prev::after,
.slick-next::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--accent-yellow, #83a598),
        var(--accent-green, #458588),
        var(--accent-blue, #689d6a),
        var(--accent-purple, #b16286)
    );
    z-index: -1;
    background-size: 400%;
    animation: borderGlow 12s linear infinite;
    filter: blur(3px);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

/* Show glowing border on hover and focus */
.slick-prev:hover::after,
.slick-next:hover::after,
.slick-prev:focus::after,
.slick-next:focus::after {
    opacity: 1;
}

/* Floating animations for slick arrows */
@keyframes floatOne {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(4px, -4px) rotate(1deg);
    }
    66% {
        transform: translate(-2px, -3px) rotate(-1deg);
    }
}

@keyframes floatTwo {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-4px, -2px) rotate(-1deg);
    }
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
/* Testimonial Section End */

/* Call To Action Section Start */
.d2c_c2a_box {
    background-color: var(--primary_color);
    padding: 100px 0px;
    border-radius: 8px;
}
.d2c_c2a_box h2 {
    color: var(--secondary_color);
    margin-bottom: 10px;
}
.d2c_c2a_box p {
    color: var(--secondary_color);
    margin-bottom: 30px;
}
.d2c_c2a_box .btn {
    background: var(--accent_color);
    border: 2px solid var(--accent_color);
    color: var(--secondary_color);
    font-weight: 600;
    padding: 12px 30px;
    transition: 0.4s all ease;
}
.d2c_c2a_box .btn:hover {
    background: transparent;
    border: 2px solid var(--accent_color);
    color: var(--secondary_color);
    transition: 0.4s all ease;
}
/* Call To Action Section End */

/* Blog Section Start */
.d2c_blog_wrapper {
    padding: 60px 0px 130px;
}
.d2c_blog_wrapper h2 {
    margin-bottom: 14px;
}
.d2c_blog_wrapper p {
    margin-bottom: 40px;
}
.d2c_blog_wrapper .d2c_card {
    height: 100%;
    padding: 40px 30px;
    background: var(--default_color);
    border-radius: 8px;
    text-align: start;
    transition: 0.4s all ease;
}
.d2c_blog_wrapper .d2c_card:hover {
    background: var(--primary_color);
    transition: 0.4s all ease;
}
.d2c_blog_wrapper .d2c_img_wrapper {
    width: 100%;
    height: 200px;
    border-radius: 6px;
    margin-bottom: 30px;
}
.d2c_blog_wrapper .d2c_img_wrapper img {
    border: 1px solid var(--accent_color);
    border-radius: 4px;
    box-shadow: 0px 0px 28px #a89984;
}
.d2c_blog_wrapper a p {
    color: var(--primary_color);
    font-weight: 600;
    transition: 0.4s all ease;
}
.d2c_blog_wrapper .d2c_card:hover a p {
    color: var(--secondary_color);
    transition: 0.4s all ease;
}
.d2c_blog_wrapper .d2c_card:hover a p {
    color: var(--secondary_color);
    transition: 0.4s all ease;
}
.d2c_blog_wrapper .d2c_icon_wrapper {
    width: 29px;
    height: 29px;
    background: var(--primary_color);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s all ease;
}
.d2c_blog_wrapper .d2c_card:hover .d2c_icon_wrapper {
    background: var(--secondary_color);
    transition: 0.4s all ease;
}
.d2c_blog_wrapper .d2c_icon_wrapper i {
    color: var(--secondary_color);
}
.d2c_blog_wrapper .d2c_card:hover i {
    color: var(--primary_color);
    transition: 0.4s all ease;
}
.d2c_blog_wrapper .btn {
    margin-top: 50px;
}
/* Blog Section End */

/* Footer Section Start */
.d2c_footer_wrapper {
    padding: 100px 0px 0px;
    background-color: var(--primary_color);
    opacity: 1;
    z-index: 2;
}
.d2c_footer_wrapper i {
    font-size: 12px;
}
.d2c_footer_wrapper img {
    margin-bottom: 40px;
    max-height: 63px;
}
.d2c_footer_wrapper p {
    color: var(--default_color);
}
.d2c_contact_details {
    padding-left: 70px;
}
.d2c_footer_wrapper h5 {
    color: var(--secondary_color);
    margin-bottom: 16px;
}
.d2c_footer_wrapper .d2c_icon_wrapper {
    width: 30px;
    height: 30px;
    background: var(--secondary_color);
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #a89984;
    transition: 0.4s all ease;
    margin-right: 15px;
}
.d2c_footer_wrapper .d2c_icon_wrapper:hover {
    background: #458588;
    color: var(--secondary_color);
    transition: 0.4s all ease;
}
.d2c_footer_newsletter {
    padding-left: 90px;
}
.d2c_footer_wrapper form {
    margin-bottom: 22px;
}
.form-control {
    font-size: 15px;
    font-weight: 400;
    font-family: var(--primary_font);
    color: var(--secondary_color) !important;
    padding: 0px 20px;
    background: #edebf10a;
    border: 0;
}
.form-control:focus {
    background: #edebf10a;
    border: 0;
    box-shadow: none;
}
.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
    border-color: #edebf10a;
    box-shadow: none;
}
.d2c_footer_newsletter .btn {
    padding: 8px 14px 7px;
    background: var(--secondary_color);
    color: var(--primary_color);
    border: 2px solid var(--secondary_color);
    border-radius: 4px !important;
}
.d2c_footer_newsletter .btn:hover {
    background: var(--accent_color);
    color: var(--secondary_color);
    border: 2px solid var(--accent_color);
}
.d2c_footer_newsletter ::placeholder {
    font-size: 15px;
    font-weight: 400;
    font-family: var(--primary_font);
    color: var(--secondary_color) !important;
}
#newsletter_btn {
    margin-left: 1px;
    animation: none !important;
    transform: none !important;
}
/* Copy Right Start */
.d2c_copy_right_wrapper {
    padding: 25px 0px;
    border-top: 1px solid #a89984;
    margin-top: 40px;
}
.d2c_copy_right_wrapper .d2c_link {
    color: var(--primary_bg) !important;
    font-weight: 700;
    transition: 0.4s all;
}
.d2c_copy_right_wrapper .d2c_link:hover {
    color: var(--secondary_color) !important;
    transition: 0.4s all;
}
/* Copy Right End */
/* Footer Section End */

/* Home Page Style End */
/* ******************************************* */
/* About Page Style Start */

/* About Skill Section Start */
.d2c_about_hero {
    padding: 100px 0px 140px;
    background-image: url(../images/section_dot_bg.png), url(../images/about_page_bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover, contain;
}
.d2c_skill_wrapper {
    background: var(--primary_color);
}
.d2c_skill_wrapper h2 {
    color: var(--secondary_color);
    margin-bottom: 30px;
}
.d2c_skill_wrapper p {
    color: var(--secondary_color);
    margin-bottom: 50px;
}
.d2c_progress_card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 0px;
    border: 1px solid  rgba(255, 255, 255, 0.10);
    padding: 40px 30px;
}
.d2c_progress p {
    color: var(--secondary_color);
    font-weight: 600;
    margin-bottom: 18px;
}
.d2c_progress .progress {
    background-color: var(--secondary_color);
    height: 15px;
    border-radius: 2px;
}
.d2c_progress .progress-bar {
    background-color: var(--primary_color);
}
.d2c_skill_wrapper .d2c_img_wrapper {
    width: 555px;
    height: 539px;
    margin: 50px auto 0px;
}
/* About Skill Section End */

/* About Page Style End */
/* ******************************************* */
/* Service Page Style Start */
/* Missing background image - commented out to prevent 404 errors  
.d2c_service_page_wrapper {
    background-image: url(../images/body_bg.png) !important;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
*/
.d2c_service_page_wrapper {
    background: transparent !important;
}

/* Projects Section Transparent Background */
.d2c_testimonial_wrapper.github-repos-section {
    background: transparent !important;
    overflow: visible !important;
}

.d2c_service_page_wrapper {
    background: var(--default_color) !important;
}
.d2c_service_page {
    padding: 100px 0px 0px !important;
    background: transparent;
    min-height: unset;
}
.d2c_service_c2a {
    background-image: none;
}
.d2c_service_page h2 {
    color: var(--primary_color);
}
.d2c_service_page .d2c_service_page_content {
    color: var(--text_color);
}
/* Service Page Style End */
/* ******************************************* */
/* Project Page Style Start */
.d2c_project_page {
    padding: 100px 0px 0px;
    min-height: unset;
    background-image: none;
}
/* Project Page Style End */
/* ******************************************* */
/* Blog Page Style Start */
.d2c_blog_page {
    padding: 100px 0px 100px;
    background-image: none;
}
/* Blog Page Style End */
/* ******************************************* */
/* Contact Page Style Start */
.d2c_contact_page {
    background-image: none;
    padding-bottom: 100px;
}
.d2c_contact_title_content {
    margin-bottom: 60px;
}
.d2c_contact_wrapper .form-label {
    font-size: 18px;
    font-family: var(--primary_font);
    font-weight: 600;
    color: var(--primary_color);
    margin-bottom: 20px;
}
.d2c_contact_wrapper .form-control {
    background: var(--secondary_color);
    font-size: 18px;
    font-family: var(--primary_font);
    font-weight: 400;
    color: var(--text_color) !important;
    padding: 12px 20px;
    margin-bottom: 40px;
}
.d2c_contact_wrapper ::placeholder {
    font-size: 18px;
    font-family: var(--primary_font);
    font-weight: 400;
    color: var(--text_color);
}
.d2c_contact_wrapper textarea {
    margin-bottom: 20px !important;
}
.d2c_contact_wrapper .form-control:focus {
    background: var(--secondary_color);
    color: var(--text_color) !important;
    
}
.was-validated .form-control:valid:focus {
    box-shadow: none !important;
}
.d2c_contact_us_wrapper {
    background: var(--secondary_color);
    border-radius: 4px;
    padding: 50px;
}
.d2c_form_wrapper {
    padding-right: 50px;
}
.d2c_contact_us_wrapper i {
    color: var(--primary_color);
    font-size: 30px;
}
.d2c_contact_content {
    margin-bottom: 50px;
}
.d2c_contact_us_wrapper p {
    color: var(--primary_color);
}
.d2c_contact_info p {
    padding-left: 20px;
}
.d2c_contact_info p span {
    font-weight: 600;
}
.d2c_contact_wrapper .btn {
    width: 100%;
}
.d2c_contact_map {
    height: 450px;
    margin-top: 150px;
}
.d2c_contact_map iframe {
    width: 100%;
    height: 100%;
}
.d2c_contact_map .d2c_overlay {
    height: 100%;
    background: transparent;
    position: absolute;
    inset: 0;
    transition: 0.4s all ease;
}
.d2c_contact_map:hover .d2c_overlay {
    display: none;
    transition: 0.4s all ease;
}
/* Contact Page Style End */


/* Scroll Button Start */
#scrollBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}
#scrollBtn.show {
    display: block;
}
#scrollBtn a i {
    background: var(--color_two);
    font-size: 20px;
    color: var(--default_color);
    border-radius: 4px;
    width: 35px;
    height: 35px;
    position: fixed;
    z-index: 9999;
    bottom: 7%;
    right: 4%;
    transition: all ease 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color_two);
}
#scrollBtn a i:hover {
    color: var(--default_color);
    background: var(--color_two);
    border: 2px solid var(--color_two);
    transition: all ease 0.4s;
}
/* Scroll Button End */


/* 
    Template Name: {{ReactProx- React Developer Portfolio Website Templates}}
    Template URL: {{https://designtocodes.com/product/reactprox-react-developer-portfolio-website-templates}}
    Description: {{Purchase your ReactProx- React Developer Portfolio and get seamless integration for react projects plus top-notch portfolio as well.}}
    Author: DesignToCodes
    Author URL: https://www.designtocodes.com
    Text Domain: {{ React Prox }}
 */